The Superthread MCP server lets AI assistants securely read and act on your workspace — tasks, projects, boards, sprints, pages, and more. Add it to your client once and your assistant can work alongside you.
https://mcp.superthread.com/mcp
A remote Model Context Protocol server for Superthread. Connect your AI assistant to read and act on your workspace — tasks, projects, boards, sprints, pages, and more.
The server supports two ways to authenticate. Most people should use OAuth — it's the simplest and most secure.
Add the server URL to your client and authorize it in a browser window — there's no token to copy or store. Access is tied to your Superthread account and can be revoked any time.
Powered by Dynamic Client Registration (DCR): your client registers itself automatically, so there's nothing to pre-configure.
For clients without OAuth support or for headless and automation
setups, send a Bearer token in the
Authorization header. Generate one in your workspace
settings and keep it secret.
Pick your client below. The recommended OAuth path needs only the server URL; the token tab shows the bearer-header alternative.
Claude's desktop and web apps connect to remote MCP servers natively as custom connectors. Available on Pro, Max, Team, and Enterprise plans.
Add Superthread as a custom connector — no token to copy or manage:
Settings → Connectors (or Organization settings → Connectors on Team/Enterprise).Add custom connector.https://mcp.superthread.com/mcp and click Add.Connect and authorize Superthread in the browser window that opens.Leave the optional Advanced settings (OAuth Client ID / Secret) blank — Superthread registers your client automatically via Dynamic Client Registration.
Add Superthread from your terminal with a single command. Claude Code handles the OAuth handshake for you.
Run claude mcp add, then authenticate from inside Claude Code:
claude mcp add --transport http \
superthread https://mcp.superthread.com/mcp
ChatGPT supports custom remote MCP servers through Developer Mode, which enables full tool access including write actions. Available on Plus, Pro, Business, Enterprise, and Education plans (web only).
Add Superthread as a connector via Developer Mode:
Settings → Permissions & Roles → Connected data.Settings → Apps & Connectors → Advanced settings and turn on Developer mode.Apps & Connectors, click Create and enter the server URL https://mcp.superthread.com/mcp.ChatGPT asks you to confirm before running any action that writes to your workspace.
Cursor has native MCP support with browser-based OAuth for remote servers.
Add to CursorUse the Add to Cursor button above, or add the server manually under Settings → Tools & Integrations → Add Custom MCP. With just a URL and no auth block, Cursor opens a browser to sign you in. If the entry shows Needs login, click it to authorize.
{
"mcpServers": {
"superthread": {
"url": "https://mcp.superthread.com/mcp"
}
}
}
VS Code (GitHub Copilot agent mode) supports remote MCP servers with automatic OAuth. Add via the command palette (MCP: Add Server) or a config file.
Create .vscode/mcp.json in your workspace (or the user-level mcp.json) with just the URL. VS Code opens a browser to authorize on first connection and registers itself automatically via Dynamic Client Registration.
{
"servers": {
"superthread": {
"type": "http",
"url": "https://mcp.superthread.com/mcp"
}
}
}
Recent versions of Zed connect to remote MCP servers natively, with OAuth handled in the browser. Configure under the Agent Panel (Add Custom Server) or in settings.json.
Add Superthread under the context_servers key with just a URL. When no Authorization header is set, Zed prompts you to authenticate via the standard MCP OAuth flow.
{
"context_servers": {
"superthread": {
"source": "custom",
"url": "https://mcp.superthread.com/mcp"
}
}
}
Encountering issues with your MCP connection? Here are solutions to common problems:
Authorization header.
mcp-remote bridge with a token instead.
https://mcp.superthread.com/mcp.