/ ディレクトリ / プレイグラウンド / Taskade MCP
● 公式 taskade ⚡ 即起動

Taskade MCP

作者 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.

なぜ使うのか

主な機能

ライブデモ

実際の動作

taskade-mcp.replay ▶ 準備完了
0/0

インストール

クライアントを選択

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

Claude Desktop → Settings → Developer → Edit Config を開く。保存後、アプリを再起動。

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

Cursor は Claude Desktop と同じ mcpServers スキーマを使用。プロジェクト設定はグローバルより優先。

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

Cline サイドバーの MCP Servers アイコンをクリックし、"Edit Configuration" を選択。

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

Claude Desktop と同じ形式。Windsurf を再起動して反映。

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

Continue はマップではなくサーバーオブジェクトの配列を使用。

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

context_servers に追加。保存時に Zed がホットリロード。

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

ワンライナー。claude mcp list で確認、claude mcp remove で削除。

ユースケース

実用的な使い方: Taskade MCP

Turn meeting notes into a Taskade project with assigned tasks

👤 Project managers ⏱ ~15 min intermediate

使うタイミング: You just finished a meeting and have notes in a file.

前提条件
  • Server/skill installed and authenticated — See repo README
フロー
  1. Parse the notes
    Read /workspace/notes/2026-05-21-kickoff.md and extract action items as 'assignee — action — due'.✓ コピーしました
    → 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.✓ コピーしました
    → Project URL + per-task confirmations

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

注意点
  • 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.
組み合わせ: filesystem · gmail

組み合わせ

他のMCPと組み合わせて10倍の力を

taskade-mcp + filesystem

Pair with filesystem for complementary capabilities

Use this server together with filesystem to complete a multi-step task.✓ コピーしました
taskade-mcp + gmail

Pair with gmail for complementary capabilities

Use this server together with gmail to complete a multi-step task.✓ コピーしました

ツール

このMCPが提供する機能

ツール入力呼び出すタイミングコスト
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

コストと制限

運用コスト

APIクォータ
See provider docs for rate limits
呼び出しあたりのトークン
Varies by tool
金額
See repo README for pricing details
ヒント
Cache tool results and avoid repeated identical calls.

セキュリティ

権限、シークレット、影響範囲

認証情報の保管: Use environment variables; never commit secrets
データ送信先: Tool calls go to the provider's API as documented

トラブルシューティング

よくあるエラーと対処法

401 Unauthorized

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

確認: list_projects returns at least one project
agent_id not found

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

確認: list_agents returns the agent you want

代替案

Taskade MCP 他との比較

代替案代わりに使う場面トレードオフ
Linear MCPEngineering-focused issue trackingLess general; better for code teams

その他

リソース

📖 GitHub の公式 README を読む

🐙 オープンな issue を見る

🔍 400以上のMCPサーバーとSkillsを見る