by 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.
# Add to your Claude Code skills
git clone https://github.com/taskade/mcpConnect Taskade to any AI assistant — Claude, Cursor, Windsurf, n8n, and more — via the Model Context Protocol.
50+ tools for workspaces, projects, tasks, AI agents, knowledge bases, templates, automations, media, and sharing — all from your AI client.
MCP-powered Taskade agent running inside Claude Desktop by Anthropic:
Go to Taskade Settings > API and create a Personal Access Token.
Add to your claude_desktop_config.json:
{
"mcpServers": {
"taskade": {
"command": "npx",
"args": ["-y", "@taskade/mcp-server"],
"env": {
"TASKADE_API_KEY": "your-api-key-here"
}
}
}
}
Add to your Cursor MCP settings:
{
"mcpServers": {
"taskade": {
"command": "npx",
"args": ["-y", "@taskade/mcp-server"],
"env": {
"TASKADE_API_KEY": "your-api-key-here"
}
}
}
}
No comments yet. Be the first to share your thoughts!
TASKADE_API_KEY=your-api-key npx @taskade/mcp-server --http
The server starts at http://localhost:3000 (configure with PORT env var). Connect via SSE at http://localhost:3000/sse?access_token=your-api-key.
| Tool | Description |
|------|-------------|
| workspacesGet | List all workspaces |
| workspaceFoldersGet | List folders in a workspace |
| workspaceCreateProject | Create a project in a workspace |
| Tool | Description |
|------|-------------|
| projectGet | Get project details |
| projectCreate | Create a new project |
| projectCopy | Copy a project to a folder |
| projectComplete | Mark project as completed |
| projectRestore | Restore a completed project |
| projectFromTemplate | Create project from a template |
| projectMembersGet | List project members |
| projectFieldsGet | Get custom fields for a project |
| projectShareLinkGet | Get the share link |
| projectShareLinkEnable | Enable the share link |
| projectBlocksGet | Get all blocks in a project |
| projectTasksGet | Get all tasks in a project |
| Tool | Description |
|------|-------------|
| taskGet | Get task details |
| taskCreate | Create one or more tasks |
| taskPut | Update a task |
| taskDelete | Delete a task |
| taskComplete | Mark task as complete |
| taskUncomplete | Mark task as incomplet...