A Model Context Protocol (MCP) server for interacting with Shortcut
Project description
Shortcut MCP Server
A Model Context Protocol (MCP) server for interacting with Shortcut (formerly Clubhouse) directly from Claude.
Acknowledgments
This project is based on the original work by Antonio Lorusso. Mark Madsen's fork extends the original implementation with additional features including advanced search capabilities, improved CLI tools, and enhanced user experience.
Features
- View projects, stories, epics, and objectives
- Search through stories with advanced filtering options
- Create new stories, epics, and objectives
- Safe operations only (no updates or deletions)
- Archived stories management (excluded by default, with option to include)
Installation
pip install shortcut-mcp
Quick Start
1. Set up with Claude Desktop
# Install and set up in one step
shortcut-mcp setup
You'll be prompted for your Shortcut API token, which you can find in your Shortcut settings.
Security Note: Your API token grants access to your Shortcut account. Never share it publicly or commit it to version control. The
.envfile is included in.gitignoreto help prevent accidental exposure.
2. Using in Claude
After setup, you can now use the Shortcut tools directly in Claude Desktop. Try these commands:
list-workflows- See all workflow stateslist-my-stories- View stories assigned to youlist-stories-by-state-name- View stories in a specific stateadvanced-search-stories- Find stories with multiple filterslist-projects- See all available projectssearch-stories- Find stories by keywordslist-archived-stories- View archived storieslist-my-archived-stories- View your archived stories
Manual Usage
If you want to run the server manually:
# Set your API token
export SHORTCUT_API_TOKEN=your_token_here
# Start the server
shortcut-mcp start
Development Setup
- Clone the repository:
git clone https://github.com/idyll/shortcut-mcp.git
cd shortcut-mcp
- Install Python with asdf:
asdf install
- Create virtual environment and install dependencies:
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
uv pip install -e . # Install package in editable mode
- Set up your environment:
cp .env.example .env
# Edit .env and add your Shortcut API token
- Run the server:
python -m shortcut_mcp
Project Structure
shortcut-mcp/
├── src/
│ └── shortcut_mcp/ # Main package directory
│ ├── __init__.py # Package initialization
│ ├── __main__.py # Entry point
│ ├── cli.py # CLI implementation
│ └── server.py # Server implementation
├── pyproject.toml # Project configuration
├── .tool-versions # ASDF version configuration
└── README.md
Using with Claude Desktop
The shortcut-mcp setup command will automatically configure Claude Desktop for you. If you want to do it manually, add this to your Claude Desktop config:
On MacOS (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"shortcut": {
"command": "shortcut-mcp",
"args": ["start"],
"env": {
"SHORTCUT_API_TOKEN": "your_token_here"
}
}
}
}
On Windows (%AppData%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"shortcut": {
"command": "shortcut-mcp",
"args": ["start"],
"env": {
"SHORTCUT_API_TOKEN": "your_token_here"
}
}
}
}
Testing
You can test the server using the MCP Inspector:
npx @modelcontextprotocol/inspector shortcut-mcp start
Safety Features
This server implements read-only operations with safe creation capabilities:
- Only allows GET (read) and POST (create) operations
- No modification or deletion of existing data
- All operations are attributed to the API token owner
Development
Python Version Management
This project uses asdf for Python version management. The required Python version is specified in .tool-versions.
# Install Python with asdf
asdf install python
# The correct version will be automatically selected based on .tool-versions
Code Quality
We use pylint for code quality checks. Run it with:
pylint src/shortcut_mcp
Building and Publishing
Once your code is ready:
# Install build tools
pip install build twine
# Build the package
python -m build
# Upload to PyPI
python -m twine upload dist/*
Advanced Search Features
The Shortcut MCP server provides powerful search capabilities through the advanced-search-stories tool:
Search Parameters
- Owner vs. Requestor: Distinguish between the person assigned to a story (owner) and the person who requested it
- Workflow State: Filter by specific workflow states like "In Development" or "Ready for Review"
- Time-based Filtering: Find stories based on when they were created or updated
created_after/created_before: Filter by creation dateupdated_after/updated_before: Filter by last update date
- Archived Stories: All search tools exclude archived stories by default
- Use
include_archived: trueparameter to include archived stories - Dedicated tools for working with archived stories:
list-archived-storiesandlist-my-archived-stories
- Use
Example Queries
In Claude, you can use commands like:
- "Find stories requested by John but owned by Sarah"
- "Show me stories in the Ready for Review state created in the last month"
- "Search for stories updated after 2023-01-01 in the In Development state"
- "List archived stories in the Done state"
- "Show my archived stories from the last quarter"
This makes it easy to find exactly the stories you're looking for, even in large projects with many tickets.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file shortcut_mcp-0.2.1.tar.gz.
File metadata
- Download URL: shortcut_mcp-0.2.1.tar.gz
- Upload date:
- Size: 19.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3aa08e4b4f115accc5bcf6458183dbd73f375761048a1067c5cfeb372cb7e927
|
|
| MD5 |
78a578bf77b53af5f64f729ceda6d619
|
|
| BLAKE2b-256 |
36e2816244d25806b02f8ec1101b987945cc1a5ef29a96c13f54ea42b86cbe25
|
File details
Details for the file shortcut_mcp-0.2.1-py3-none-any.whl.
File metadata
- Download URL: shortcut_mcp-0.2.1-py3-none-any.whl
- Upload date:
- Size: 15.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cde6cfd69f278c630c7a79cff290f15c0532c7dc9fd06274bcc050b7ee38128b
|
|
| MD5 |
977c26e3cd3971d94f6a050c46357df8
|
|
| BLAKE2b-256 |
ced8206fde72d38e487c09e07ffce5d4e6c9007abe6b9b37f132d71bdfa31922
|