/ Annuaire / Playground / Taskade MCP
● Officiel taskade ⚡ Instantané

Taskade MCP

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

Pourquoi l'utiliser

Fonctionnalités clés

Démo en direct

Aperçu en pratique

taskade-mcp.replay ▶ prêt
0/0

Installer

Choisissez votre 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"
      ]
    }
  }
}

Ouvrez Claude Desktop → Settings → Developer → Edit Config. Redémarrez après avoir enregistré.

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

Cursor utilise le même schéma mcpServers que Claude Desktop. La config projet l'emporte sur la globale.

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

Cliquez sur l'icône MCP Servers dans la barre latérale Cline, puis "Edit Configuration".

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

Même format que Claude Desktop. Redémarrez Windsurf pour appliquer.

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

Continue utilise un tableau d'objets serveur plutôt qu'une map.

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

Ajoutez dans context_servers. Zed recharge à chaud à la sauvegarde.

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

Une seule ligne. Vérifiez avec claude mcp list. Supprimez avec claude mcp remove.

Cas d'usage

Usages concrets : Taskade MCP

Turn meeting notes into a Taskade project with assigned tasks

👤 Project managers ⏱ ~15 min intermediate

Quand l'utiliser : You just finished a meeting and have notes in a file.

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

Résultat : A fully populated Taskade project from raw notes in one shot.

Pièges
  • 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.
Combiner avec : filesystem · gmail

Combinaisons

Associez-le à d'autres MCPs pour un effet X10

taskade-mcp + filesystem

Pair with filesystem for complementary capabilities

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

Pair with gmail for complementary capabilities

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

Outils

Ce que ce MCP expose

OutilEntréesQuand appelerCoût
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

Coût et limites

Coût d'exécution

Quota d'API
See provider docs for rate limits
Tokens par appel
Varies by tool
Monétaire
See repo README for pricing details
Astuce
Cache tool results and avoid repeated identical calls.

Sécurité

Permissions, secrets, portée

Stockage des identifiants : Use environment variables; never commit secrets
Sortie de données : Tool calls go to the provider's API as documented

Dépannage

Erreurs courantes et correctifs

401 Unauthorized

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

Vérifier : list_projects returns at least one project
agent_id not found

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

Vérifier : list_agents returns the agent you want

Alternatives

Taskade MCP vs autres

AlternativeQuand l'utiliserCompromis
Linear MCPEngineering-focused issue trackingLess general; better for code teams

Plus

Ressources

📖 Lire le README officiel sur GitHub

🐙 Voir les issues ouvertes

🔍 Parcourir les 400+ serveurs MCP et Skills