Superthread MCP Extended
A perfect drop-in replacement to the official Superthread MCP, providing way more tools. Cloudflare Workers based Remote MCP server
Superthread MCP Extended
A tiny MCP server by Sorbet Studio
An enhanced Model Context Protocol (MCP) server that extends the official Superthread MCP with comprehensive CRUD operations and optimized workflows. Drop-in replacement with significantly more functionality.
Chose cloudflare workers over vercel since this app is pretty much serverless functions, with no complex nodejs features being uses, just simple api request tranforms. Besides, I love cloudflare's free tier.
Please help create an issue/PR if you wanna add more tools or improve the existing ones.
README is a work in progress. Ideas and thoughts are scattered rn.
Key Difference from the official MCP
- 8 essential tools instead of basic ask/search functionality
- Complete CRUD operations for cards, boards, and spaces
- Optimized responses for reduced token usage and faster tool chaining .. compared to raw api.
Quick Start
Use our hosted version directly without setup, with zero logging or data retention:
https://superthread.sorbet.studio/mcp/app
Note: The Cloudflare worker for this, literally just builds this main branch and deploys it. If you find any security or privacy loop holes, please open an issue, and i'll fix it.
The idea is to just create a perfect drop in replacement to the original, no other code should ideally run apart from transforming/filtering the api requests from superthread. So you wont have to create your own instance, but if you want to, you should! (Deploy to Cloudflare button coming soon.)
Here's the MCP setup guide from api.superthread.com/mcp .. just the domain swapped in.
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"superthread-extended": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"https://superthread.sorbet.studio/mcp/app",
"--header",
"Authorization:${ST_PAT}"
],
"env": {
"ST_PAT": "Bearer stp-XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXX"
}
}
}
}
Claude Code
claude mcp add \
--transport http \
--scope local \
"superthread-extended" \
"https://superthread.sorbet.studio/mcp/app" \
--env ST_PAT="stp-XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXX" \
--header "Authorization: Bearer ${ST_PAT}"
Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"superthread-extended": {
"type": "http",
"url": "https://superthread.sorbet.studio/mcp/app",
"headers": {
"Authorization": "Bearer stp-XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXX"
}
}
}
}
Available Tools
User Management
get_my_account- Get team ID and user informationget_team_members- List team members
Workspace Navigation
get_spaces- List all spaces/projects with project IDsget_space- Get detailed space information
Board Management
get_board- Search for boards by titleget_board_details- Get board with lists for task creationget_boards- List boards with filtering optionscreate_board- Create new boards (admin/owner only)update_board- Update board properties
Task Management
create_card- Create tasks from any inputget_card- Get detailed task informationupdate_card- Update task propertiesget_cards_assigned_to_user- Get user's assigned tasksadd_related_card- Link related tasksarchive_card- Archive completed tasks
Core Workflow
A typical 4-step process for say, extracting tasks from a screenshot using claude:
get_my_account()→ Extract team_idget_spaces(team_id)→ Get project_id and available boardsget_board_details(team_id, board_id)→ Get list_id for task placementcreate_card(...)→ Create tasks with proper hierarchy
Again, as MCP servers go, you could let Claude (etc) figure the tool call chain.
Architecture
Response Optimization
- Intelligent field filtering removes 60-80% of unnecessary data
- Preserves essential IDs and relationships for tool chaining
- Maintains full API compatibility with reduced token usage
Security Boundaries
- Read operations: Full access to user's workspace data
- Create operations: Cards and boards only (with permissions)
- Excluded: Destructive operations, member management, space creation
Project Structure
src/
├── lib/
│ ├── api-client.ts # Centralized Superthread API client
│ ├── response-filters.ts # Response optimization
│ └── search.ts # Search utilities
├── tools/
│ ├── user.ts # User and team operations
│ ├── spaces.ts # Workspace navigation
│ ├── boards.ts # Board management
│ └── cards.ts # Task operations
├── types/ # TypeScript definitions
├── index.ts # Cloudflare Workers entry
└── server.ts # MCP server configuration
Self-Hosting
Development
git clone <repository>
cd superthread-mcp-extended
bun install
bun run dev
Deployment
# Deploy to Cloudflare Workers
bun run deploy
Local Usage
http://localhost:8787/mcp/app
Requirements
- Superthread Personal Access Token (PAT)
- Node.js 22+ or Bun runtime (for development)
- Network access to api.superthread.com
Authentication
All requests require a valid Superthread Personal Access Token:
Authorization: Bearer stp-XXXXXXXXXXXX.XXXXXXXXXXXXXXXXXXXXXXXX
Tokens can be generated in your Superthread account settings.
Note: This is an unofficial extension and is not affiliated with Superthread. For the official basic MCP server, visit api.superthread.com/mcp.
Credit:
- Superthread for the original MCP server and fantastic API docs (ofc the platform as well haha)
- Cloudflare for the Workers platform
- Unofficial-Superthread-MCP for the initial inspiration and some code snippets, and the idea of using ZOD for request validation. Really cool project, please check them out too as a direct local alternative to this one.
관련 서버
Kone.vc
스폰서Monetize your AI agent with contextual product recommendations
Google Sheets
Integrate with Google Sheets to read, write, and manage spreadsheet data.
mcp-walmart-ads
MCP server for Walmart Connect Ads (Sponsored Search + Display) — automatic RSA-SHA256 signing, multi-region config, and bundled API docs.
Notion MCP Server
An MCP server for interacting with your Notion workspace, enabling LLMs to manage pages and databases.
flomo
flomo 官方 MCP 服务
Cua
MCP server for the Computer-Use Agent (CUA), allowing you to run CUA through Claude Desktop or other MCP clients.
IT Tools
Provides access to over 70 IT tools and utilities for developers and IT professionals, including encoding, text manipulation, and network tools.
Plane
The official Plane MCP server provides integration with Plane APIs, enabling full AI automation of Plane projects, work items, cycles and more.
CalmBoard.ai
MCP - Multi-purpose endpoint for AI agents to access CalmBoard's features and data. This MCP provides a comprehensive interface for AI agents to interact with CalmBoard's project/scrum/kanban board management functionalities and retrieve relevant data to provide insights and recommendations to users.
Huuh MCP Server
Integrates with the huuh.me platform to enable collaborative AI knowledge bases and personas.
n8n MCP Server
Provides workflow validation and best practices tools for the n8n automation platform.