MCP Hub
Back to servers

shortcut-mcp

A highly efficient MCP server for Shortcut project management designed for Cloudflare Workers, offering a single-tool architecture that reduces token usage by 96% compared to the official implementation.

Stars
1
Tools
1
Updated
Jan 21, 2026

StreamShortcut (Cloudflare Workers)

A lightweight Shortcut MCP deployed on Cloudflare Workers. One tool, ten actions.

Live URL: https://streamshortcut.staycek.workers.dev/mcp

Why?

The official @shortcut/mcp uses ~11,652 tokens for tool definitions (52 tools). StreamShortcut uses ~393 tokens — a 96.6% reduction.

Actions

ActionPurpose
searchFind stories (default: your active stories)
getStory details by ID or URL
updateChange state, estimate, owner
commentAdd comment to story
createCreate new story
storiesList stories with filters
workflowsList workflows and states
membersList team members
projectsList projects
apiRaw REST API
helpDocumentation

Usage with Claude

You must provide your own Shortcut API token. Get one at: https://app.shortcut.com/settings/account/api-tokens

Add to your Claude Desktop config:

{
  "mcpServers": {
    "shortcut": {
      "type": "http",
      "url": "https://streamshortcut.staycek.workers.dev/mcp",
      "headers": {
        "X-Shortcut-Token": "your-token-here"
      }
    }
  }
}

Or set the SHORTCUT_API_TOKEN environment variable and use:

{
  "mcpServers": {
    "shortcut": {
      "type": "http",
      "url": "https://streamshortcut.staycek.workers.dev/mcp",
      "headers": {
        "X-Shortcut-Token": "${SHORTCUT_API_TOKEN}"
      }
    }
  }
}

Deploy Your Own (Optional)

If you prefer to self-host:

  1. Clone and install:

    git clone https://github.com/stayce/streamshortcut-cloudflare
    cd streamshortcut-cloudflare
    npm install
    
  2. Deploy:

    npm run deploy
    

No server-side secrets needed — users always provide their own token.

Examples

{"action": "search"}
{"action": "get", "id": "704"}
{"action": "update", "id": "704", "state": "Done"}
{"action": "comment", "id": "704", "body": "Fixed!"}
{"action": "create", "name": "New bug", "type": "bug"}
{"action": "workflows"}
{"action": "members"}
{"action": "api", "method": "GET", "path": "/projects"}
{"action": "help"}

Related

License

MIT

Reviews

No reviews yet

Sign in to write a review