Shortcut project management. Create, update, search stories and manage workflows.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"shortcut": {
"url": "https://streamshortcut.staycek.workers.dev/mcp",
"type": "http",
"headers": {
"X-Shortcut-Token": "your-token-here"
}
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A lightweight Shortcut MCP deployed on Cloudflare Workers. One tool, ten actions.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Local-first AI memory with knowledge graphs and hybrid search. 17+ AI tools via MCP. Free.
MCP Security Weekly
Get CVE alerts and security updates for io.github.stayce/shortcut-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A lightweight Shortcut MCP deployed on Cloudflare Workers. One tool, ten actions.
Live URL: https://streamshortcut.staycek.workers.dev/mcp
The official @shortcut/mcp uses ~11,652 tokens for tool definitions (52 tools).
StreamShortcut uses ~393 tokens — a 96.6% reduction.
| Action | Purpose |
|---|---|
search | Find stories (default: your active stories) |
get | Story details by ID or URL |
update | Change state, estimate, owner |
comment | Add comment to story |
create | Create new story |
stories | List stories with filters |
workflows | List workflows and states |
members | List team members |
projects | List projects |
api | Raw REST API |
help | Documentation |
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}"
}
}
}
}
If you prefer to self-host:
Clone and install:
git clone https://github.com/stayce/streamshortcut-cloudflare
cd streamshortcut-cloudflare
npm install
Deploy:
npm run deploy
No server-side secrets needed — users always provide their own token.
{"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"}
MIT