π Taskade MCP
@taskade
π€ Taskade MCP Β· Official MCP server and OpenAPI to MCP codegen. Build AI agent tools from any OpenAPI API and connect to Claude, Cursor, and more.
Overview
What is Taskade MCP?
Taskade MCP is a Model Context Protocol server that connects your Taskade workspace to AI assistants like Claude, Cursor, Windsurf, and VS Code. It provides 62 tools for reading and writing workspaces, projects, tasks, AI agents, templates, media, webhooks, and moreβall controllable via natural language from your AI client.
How to use Taskade MCP?
Get a Personal Access Token from Taskade Settings > API, then run the server using npx -y @taskade/mcp-server with the TASKADE_API_KEY environment variable. Configure your MCP client (Claude Desktop, Cursor, Windsurf, Cline, VS Code) with the provided JSON snippet. Alternatively, start the server in HTTP/SSE mode with --http for remote or custom clients at http://localhost:3000.
Key features of Taskade MCP
- 62 tools across workspaces, projects, tasks, AI agents, templates, media, and more
- Create, update, delete, and manage tasks with due dates, assignees, notes, and custom fields
- Generate and configure autonomous AI agents, attach knowledge, and publish them publicly
- List and manage projects, folders, members, and custom fields
- Subscribe to real-time webhooks and hold live conversations with AI agents (beta)
- No HTTP client code requiredβdescribe what you need in natural language
Use cases of Taskade MCP
- Ask βShow me all overdue tasksβ and get a formatted report from your workspace
- βCreate a support agent trained on our docs projectβ β generates agent, attaches knowledge, publishes it
- βSet up next weekβs sprint from our templateβ β copies template, populates tasks, assigns team
- βSummarize yesterdayβs completed workβ β reads task history and generates a standup summary
- Build multi-step automations across 100+ services from your IDE
FAQ from Taskade MCP
What is the difference between this Workspace MCP and the Genesis App MCP?
This package (@taskade/mcp-server) is the Workspace MCP β it runs locally via stdio with a personal token and lets your AI client read/write your projects, tasks, and agents. The Genesis App MCP is a separate hosted surface at https://www.taskade.com/mcp that uses OAuth 2.0 and focuses on editing published app code (requires Business+ plan).
Do I need a Taskade API key? How do I get one?
Yes, you need a Personal Access Token. Go to Taskade Settings > API and create one. The server requires the TASKADE_API_KEY environment variable.
Does Taskade MCP work with remote or custom clients?
Yes. Run with TASKADE_API_KEY=your-key npx @taskade/mcp-server --http to start an HTTP server on port 3000 (configurable with PORT). Connect via SSE at http://localhost:3000/sse?access_token=your-api-key.
Are all 62 tools available on free plans?
Some endpoints, such as workspace listing, are gated for free accounts. Paid plans unlock full access (e.g., automations, project creation from templates, some agent features).
How does Taskade MCP differ from using the Taskade REST API directly?
With the MCP server you run a single npx command instead of writing HTTP client code. You interact in natural language, the AI chains multiple tools intelligently, and error handling is automatic.