Labsco
jaey-p logo

Superthread MCP Extended

โ˜… 1

from jaey-p

A perfect drop-in replacement to the official Superthread MCP, providing way more tools. Cloudflare Workers based Remote MCP server

๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedAccount requiredAdvanced setup

Superthread MCP Extended

[!IMPORTANT]

Archived

This project has been archived because the official Superthread MCP server now supports most, if not all, of the tools this extension was created to add.

This repository will remain available for reference, but active development has stopped. New users should use the official Superthread MCP server instead:

https://mcp.superthread.com/mcp

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.

Available Tools

User Management

  • get_my_account - Get team ID and user information
  • get_team_members - List team members

Workspace Navigation

  • get_spaces - List all spaces/projects with project IDs
  • get_space - Get detailed space information

Board Management

  • get_board - Search for boards by title
  • get_board_details - Get board with lists for task creation
  • get_boards - List boards with filtering options
  • create_board - Create new boards (admin/owner only)
  • update_board - Update board properties

Task Management

  • create_card - Create tasks from any input
  • get_card - Get detailed task information
  • update_card - Update task properties
  • get_cards_assigned_to_user - Get user's assigned tasks
  • add_related_card - Link related tasks
  • archive_card - Archive completed tasks

Core Workflow

A typical 4-step process for say, extracting tasks from a screenshot using claude:

  1. get_my_account() โ†’ Extract team_id
  2. get_spaces(team_id) โ†’ Get project_id and available boards
  3. get_board_details(team_id, board_id) โ†’ Get list_id for task placement
  4. create_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

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.