JUHE API Marketplace
taskade avatar
MCP Server

mcp-taskade

mcp-taskade

111
GitHub Stars
3/3/2026
Last Updated
MCP Server Configuration
1{
2 "name": "taskade",
3 "command": "npx",
4 "args": [
5 "-y",
6 "@taskade/mcp-server"
7 ],
8 "env": {
9 "TASKADE_API_KEY": "your-api-key-here"
10 }
11}
JSON11 lines
  1. Home
  2. MCP Servers
  3. mcp

README Documentation

Taskade MCP Server

Connect 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 Server — Connect Taskade to Claude Desktop, Cursor, Windsurf, or any MCP client.
  • OpenAPI Codegen — Generate MCP tools from any OpenAPI schema.

Demo

MCP-powered Taskade agent running inside Claude Desktop by Anthropic:

Taskade MCP Demo — AI agent managing tasks and projects in Claude Desktop


Quick Start

1. Get Your API Key

Go to Taskade Settings > API and create a Personal Access Token.

2. Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "taskade": {
      "command": "npx",
      "args": ["-y", "@taskade/mcp-server"],
      "env": {
        "TASKADE_API_KEY": "your-api-key-here"
      }
    }
  }
}

3. Cursor

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "taskade": {
      "command": "npx",
      "args": ["-y", "@taskade/mcp-server"],
      "env": {
        "TASKADE_API_KEY": "your-api-key-here"
      }
    }
  }
}

4. HTTP / SSE Mode (for n8n, custom clients)

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.


Tools (50+)

Workspaces

ToolDescription
workspacesGetList all workspaces
workspaceFoldersGetList folders in a workspace
workspaceCreateProjectCreate a project in a workspace

Projects

ToolDescription
projectGetGet project details
projectCreateCreate a new project
projectCopyCopy a project to a folder
projectCompleteMark project as completed
projectRestoreRestore a completed project
projectFromTemplateCreate project from a template
projectMembersGetList project members
projectFieldsGetGet custom fields for a project
projectShareLinkGetGet the share link
projectShareLinkEnableEnable the share link
projectBlocksGetGet all blocks in a project
projectTasksGetGet all tasks in a project

Tasks

ToolDescription
taskGetGet task details
taskCreateCreate one or more tasks
taskPutUpdate a task
taskDeleteDelete a task
taskCompleteMark task as complete
taskUncompleteMark task as incomplete
taskMoveMove a task within a project
taskAssigneesGetGet task assignees
taskPutAssigneesAssign users to a task
taskDeleteAssigneesRemove assignees
taskGetDateGet task due date
taskPutDateSet task due date
taskDeleteDateRemove task due date
taskNoteGetGet task note
taskNotePutUpdate task note
taskNoteDeleteDelete task note
taskFieldsValueGetGet all field values
taskFieldValueGetGet a specific field value
taskFieldValuePutSet a field value
taskFieldValueDeleteDelete a field value

AI Agents

Create, manage, and publish autonomous AI agents with custom knowledge and tools.

ToolDescription
folderAgentGenerateGenerate an AI agent from a text prompt
folderCreateAgentCreate an agent with custom configuration
folderAgentGetList agents in a folder
agentGetGet agent details
agentUpdateUpdate agent configuration
deleteAgentDelete an agent
agentPublicAccessEnablePublish agent publicly
agentPublicGetGet public agent details
agentPublicUpdateUpdate public agent settings
agentKnowledgeProjectCreateAdd a project as agent knowledge
agentKnowledgeMediaCreateAdd media as agent knowledge
agentKnowledgeProjectRemoveRemove project from knowledge
agentKnowledgeMediaRemoveRemove media from knowledge
agentConvosGetList agent conversations
agentConvoGetGet conversation details
publicAgentGetGet agent by public ID

Templates

ToolDescription
folderProjectTemplatesGetList available project templates
projectFromTemplateCreate a project from a template

Media

ToolDescription
mediasGetList media files in a folder
mediaGetGet media details
mediaDeleteDelete a media file

Personal

ToolDescription
meProjectsGetList all your projects

Use Cases

Project Management with AI

Ask your AI assistant to manage your Taskade workspace:

  • "Show me all my projects and their status"
  • "Create a new project called Q1 Planning with tasks for each team"
  • "Move all overdue tasks to the Backlog project"
  • "Set due dates for all tasks in the Sprint project"

AI Agent Creation

Build and deploy AI agents directly from your editor:

  • "Create an AI agent called Customer Support Bot with knowledge from our docs project"
  • "Generate an agent for code review using this prompt: ..."
  • "Publish my agent publicly and give me the share link"
  • "Add our API documentation project as knowledge to the agent"

Template Workflows

Automate project creation from templates:

  • "List all templates in my workspace"
  • "Create 5 new client onboarding projects from the Client Template"
  • "Copy the Sprint Retrospective project for this week"

n8n Automation Integration

Connect Taskade to 400+ apps via n8n workflows. See the n8n Integration Guide for setup instructions.


OpenAPI Codegen

Use our generator to build MCP tools from any OpenAPI spec — not just Taskade.

npm install --save-dev @taskade/mcp-openapi-codegen @readme/openapi-parser
import { dereference } from '@readme/openapi-parser';
import { codegen } from '@taskade/mcp-openapi-codegen';

const document = await dereference('your-api-spec.yaml');

await codegen({
  path: 'src/tools.generated.ts',
  document,
});

Works with any OpenAPI 3.0+ spec. Generate MCP tools for your own APIs in minutes.


What is Taskade?

Taskade (YC W19) is the AI-powered workspace for teams — deploy agents, automate workflows, and ship faster.

  • AI Agents — Autonomous agents with memory, knowledge bases, and custom tools
  • Automations — No-code workflow automation with 100+ integrations
  • Real-time Collaboration — Multiplayer workspace with chat, video, and shared projects
  • Genesis Apps — Build and publish AI-powered apps to the Taskade community
  • Templates — 700+ templates for project management, engineering, marketing, and more
  • API & MCP — Full REST API and Model Context Protocol for developer integrations

Links:

  • App: taskade.com
  • Create: taskade.com/create
  • Agents: taskade.com/agents
  • Templates: taskade.com/templates
  • Community: taskade.com/community
  • Developer Docs: developers.taskade.com
  • Blog: taskade.com/blog

Roadmap

See open issues for planned features and improvements.

  • Hosted MCP Endpoint — mcp.taskade.com for zero-install MCP access (#6)
  • Automation & Flow Tools — Create, enable, and manage workflow automations via MCP
  • Agent Chat via MCP — Send messages to AI agents and receive responses
  • Webhook Triggers — Receive real-time notifications from Taskade events
  • agent.js — Open-source autonomous agent toolkit (coming soon)
  • TaskOS — Agent platform at developers.taskade.com

Contributing

Help us improve MCP tools, OpenAPI workflows, and agent capabilities.

  • Issues — Report bugs or request features
  • Pull Requests — Contributions welcome
  • Community — Join the Taskade community
  • Contact — hello@taskade.com

License

MIT

Quick Install

Quick Actions

View on GitHubView All Servers

Key Features

Model Context Protocol
Secure Communication
Real-time Updates
Open Source

Boost your projects with Wisdom Gate LLM API

Supporting GPT-5, Claude-4, DeepSeek v3, Gemini and more.

Enjoy a free trial and save 20%+ compared to official pricing.

Learn More
JUHE API Marketplace

Accelerate development, innovate faster, and transform your business with our comprehensive API ecosystem.

JUHE API VS

  • vs. RapidAPI
  • vs. API Layer
  • API Platforms 2025
  • API Marketplaces 2025
  • Best Alternatives to RapidAPI

For Developers

  • Console
  • Collections
  • Documentation
  • MCP Servers
  • Free APIs
  • Temp Mail Demo

Product

  • Browse APIs
  • Suggest an API
  • Wisdom Gate LLM
  • Global SMS Messaging
  • Temp Mail API

Company

  • What's New
  • Welcome
  • About Us
  • Contact Support
  • Terms of Service
  • Privacy Policy
Featured on Startup FameFeatured on Twelve ToolsFazier badgeJuheAPI Marketplace - Connect smarter, beyond APIs | Product Huntai tools code.marketDang.aiFeatured on ShowMeBestAI
Copyright © 2026 JUHEDATA HK LIMITED - All rights reserved