/ Verzeichnis / Playground / Taskade MCP
● Offiziell taskade ⚡ Sofort

Taskade MCP

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

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

taskade-mcp.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

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

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

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

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

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

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

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

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

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

Continue nutzt ein Array von Serverobjekten statt einer Map.

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

In context_servers hinzufügen. Zed lädt beim Speichern neu.

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

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: Taskade MCP

Turn meeting notes into a Taskade project with assigned tasks

👤 Project managers ⏱ ~15 min intermediate

Wann einsetzen: You just finished a meeting and have notes in a file.

Voraussetzungen
  • Server/skill installed and authenticated — See repo README
Ablauf
  1. Parse the notes
    Read /workspace/notes/2026-05-21-kickoff.md and extract action items as 'assignee — action — due'.✓ Kopiert
    → 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.✓ Kopiert
    → Project URL + per-task confirmations

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

Fallstricke
  • 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.
Kombinieren mit: filesystem · gmail

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

taskade-mcp + filesystem

Pair with filesystem for complementary capabilities

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

Pair with gmail for complementary capabilities

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

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
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

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
See provider docs for rate limits
Tokens pro Aufruf
Varies by tool
Kosten in €
See repo README for pricing details
Tipp
Cache tool results and avoid repeated identical calls.

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: Use environment variables; never commit secrets
Datenabfluss: Tool calls go to the provider's API as documented

Fehlerbehebung

Häufige Fehler und Lösungen

401 Unauthorized

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

Prüfen: list_projects returns at least one project
agent_id not found

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

Prüfen: list_agents returns the agent you want

Alternativen

Taskade MCP vs. andere

AlternativeWann stattdessenKompromiss
Linear MCPEngineering-focused issue trackingLess general; better for code teams

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen