/ Diretório / Playground / Taskade MCP
● Oficial taskade ⚡ Instantâneo

Taskade MCP

por taskade · taskade/mcp

Official Taskade MCP + OpenAPI→MCP codegen for any API.

Taskade's MCP exposes the Taskade collaborative workspace — projects, tasks, agents — to Claude. It also includes an OpenAPI→MCP code generator so you can turn any REST API into an MCP server with one command.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

taskade-mcp.replay ▶ pronto
0/0

Instalar

Escolha seu cliente

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "taskade-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@taskade/mcp"
      ]
    }
  }
}

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "taskade-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@taskade/mcp"
      ]
    }
  }
}

Cursor usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "taskade-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@taskade/mcp"
      ]
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "taskade-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@taskade/mcp"
      ]
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "taskade-mcp",
      "command": "npx",
      "args": [
        "-y",
        "@taskade/mcp"
      ]
    }
  ]
}

O Continue usa um array de objetos de servidor em vez de um map.

~/.config/zed/settings.json
{
  "context_servers": {
    "taskade-mcp": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "@taskade/mcp"
        ]
      }
    }
  }
}

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

claude mcp add taskade-mcp -- npx -y @taskade/mcp

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: Taskade MCP

Turn meeting notes into a Taskade project with assigned tasks

👤 Project managers ⏱ ~15 min intermediate

Quando usar: You just finished a meeting and have notes in a file.

Pré-requisitos
  • Server/skill installed and authenticated — See repo README
Fluxo
  1. Parse the notes
    Read /workspace/notes/2026-05-21-kickoff.md and extract action items as 'assignee — action — due'.✓ Copiado
    → Structured list of action items
  2. Push to Taskade
    Create a Taskade project 'Q3 Kickoff' in workspace X and add each action item as a task with the right assignee and due date.✓ Copiado
    → Project URL + per-task confirmations

Resultado: A fully populated Taskade project from raw notes in one shot.

Armadilhas
  • Workspace ids and assignee emails must match Taskade exactly — Workspace ids and assignee emails must match Taskade exactly — fetch them first with list_projects/list_members.
Combine com: filesystem · gmail

Combinações

Combine com outros MCPs para 10× de alavancagem

taskade-mcp + filesystem

Pair with filesystem for complementary capabilities

Use this server together with filesystem to complete a multi-step task.✓ Copiado
taskade-mcp + gmail

Pair with gmail for complementary capabilities

Use this server together with gmail to complete a multi-step task.✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
list_projects workspace_id Find a project to work on 1 API call
create_task project_id, title, due Add a new task 1 API call
run_agent agent_id, input Invoke a Taskade-side AI agent Taskade AI credits

Custo e limites

O que custa rodar

Cota de API
See provider docs for rate limits
Tokens por chamada
Varies by tool
Monetário
See repo README for pricing details
Dica
Cache tool results and avoid repeated identical calls.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: Use environment variables; never commit secrets
Saída de dados: Tool calls go to the provider's API as documented

Solução de problemas

Erros comuns e correções

401 Unauthorized

Generate a personal access token at taskade.com/settings/personal-access-tokens and set TASKADE_API_KEY.

Verificar: list_projects returns at least one project
agent_id not found

Agents are workspace-scoped. Use list_agents in the right workspace first.

Verificar: list_agents returns the agent you want

Alternativas

Taskade MCP vs. outros

AlternativaQuando usarTroca
Linear MCPEngineering-focused issue trackingLess general; better for code teams

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills