๐ŸŒˆ Taskade MCP MCP Server

๐Ÿค– 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.

Remote serverstreamable-httpGo

What is the ๐ŸŒˆ Taskade MCP MCP server?

๐ŸŒˆ Taskade MCP MCP server exists for a simple reason โ€” assistants are far more useful when they can act on ๐ŸŒˆ Taskade MCP directly instead of describing what you should do. ๐Ÿค– 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.

What you get

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

What the assistant can call

Once ๐ŸŒˆ Taskade MCP is connected, these are the calls the assistant has available:

  • promptAgent โ€” Send a message to an AI agent and get its reply
  • listConversations โ€” List an agent's conversations
  • getConversation โ€” Get a conversation's messages
  • subscribeWebhook โ€” Subscribe to real-time Taskade event webhooks
  • unsubscribeWebhook โ€” Remove a webhook subscription
  • Setup โ€” Write HTTP client, handle auth, parse JSON
  • Interface โ€” Code against endpoints
  • Chaining โ€” Manual orchestration
  • Workspaces โ€” The Workspaces tool exposed by this server
  • Projects โ€” The Projects tool exposed by this server
  • Tasks โ€” The Tasks tool exposed by this server
  • Templates โ€” The Templates tool exposed by this server

Configuration and credentials

You will need one environment variable: TASKADE_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Choosing this one

Among the payments and commerce options, the useful question is rarely "what can it do" but "what does it cost you to run" โ€” permissions, credentials, and how much of your context its toolset consumes. ๐ŸŒˆ Taskade MCP's toolset โ€” promptAgent, listConversations, getConversation and 11 more โ€” is a fair guide to whether it matches your workflow. It is maintained by taskade; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch ๐ŸŒˆ Taskade MCP.
  • Missing credentials fail quietly in some clients โ€” if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the ๐ŸŒˆ taskade mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
promptAgentSend a message to an AI agent and get its reply
listConversationsList an agent's conversations
getConversationGet a conversation's messages
subscribeWebhookSubscribe to real-time Taskade event webhooks
unsubscribeWebhookRemove a webhook subscription
SetupWrite HTTP client, handle auth, parse JSON
InterfaceCode against endpoints
ChainingManual orchestration
WorkspacesThe Workspaces tool exposed by this server.
ProjectsThe Projects tool exposed by this server.
TasksThe Tasks tool exposed by this server.
TemplatesThe Templates tool exposed by this server.
MediaThe Media tool exposed by this server.
PersonalThe Personal tool exposed by this server.

How to install the ๐ŸŒˆ Taskade MCP MCP server

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

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
TASKADE_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • โ€œUse ๐ŸŒˆ Taskade MCP to promptAgent.โ€
  • โ€œUse ๐ŸŒˆ Taskade MCP to listConversations.โ€
  • โ€œUse ๐ŸŒˆ Taskade MCP to getConversation.โ€

Frequently asked questions

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).