Skip to main content
Glama

MCP TaskManager

MCP タスクマネージャー

タスク管理用のモデルコンテキストプロトコルサーバー。これにより、Claude Desktop(または任意のMCPクライアント)は、キューベースのシステムでタスクを管理および実行できます。

クイックスタート(ユーザー向け)

前提条件

構成

  1. Claude Desktop 構成ファイルを開きます: ~/Library/Application Support/Claude/claude_desktop_config.json

これは、Claude デスクトップ メニューから見つけることができます。

  1. クロードデスクトップを開く
  2. MacのメニューバーでClaudeをクリック
  3. 「設定」をクリック
  4. 「開発者」をクリック
  5. 設定に以下を追加します。
{ "tools": { "taskmanager": { "command": "npx", "args": ["-y", "@kazuph/mcp-taskmanager"] } } }

開発者向け

前提条件

  • Node.js 18+ ( brew install nodeでインストール)
  • Claude Desktop ( https://claude.ai/desktopからインストール)
  • tsx ( npm install -g tsxでインストール)

インストール

git clone https://github.com/kazuph/mcp-taskmanager.git cd mcp-taskmanager npm install npm run build

開発構成

  1. Claude Desktop がインストールされ、実行されていることを確認してください。
  2. まだインストールしていない場合は、tsx をグローバルにインストールします。
npm install -g tsx # or pnpm add -g tsx
  1. Claude Desktop の設定を変更してください: ~/Library/Application Support/Claude/claude_desktop_config.json

MCP クライアントの構成に以下を追加します。

{ "tools": { "taskmanager": { "args": ["tsx", "/path/to/mcp-taskmanager/index.ts"] } } }

利用可能な操作

TaskManager は、主に 2 つの操作フェーズをサポートします。

計画段階

  • ユーザーからタスクリスト(文字列の配列)を受け取ります
  • タスクをキューとして内部に保存します
  • 実行プラン(タスクの概要、タスクID、現在のキューのステータス)を返します

実行フェーズ

  • 要求に応じてキューから次のタスクを返します
  • タスク完了のフィードバックメカニズムを提供する
  • 完了したタスクをキューから削除します
  • 次のタスクの実行を準備する

パラメータ

  • action : 「計画」 | 「実行」 | 「完了」
  • tasks : タスク文字列の配列(「計画」アクションに必要)
  • taskId : タスク識別子(「完了」アクションに必要)
  • getNext : 次のタスクを要求するブールフラグ(「実行」アクション用)

使用例

// Planning phase { action: "plan", tasks: ["Task 1", "Task 2", "Task 3"] } // Execution phase { action: "execute", getNext: true } // Complete task { action: "complete", taskId: "task-123" }

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

local-only server

The server can only run on the client's local machine because it depends on local resources.

Claude Desktop がキューベースのシステムでタスクを管理および実行し、計画、実行、完了の各フェーズをサポートできるようにするモデル コンテキスト プロトコル サーバー。

  1. クイックスタート(ユーザー向け)
    1. 前提条件
    2. 構成
  2. 開発者向け
    1. 前提条件
    2. インストール
    3. 開発構成
  3. 利用可能な操作
    1. 計画段階
    2. 実行フェーズ
    3. パラメータ
  4. 使用例

    Related MCP Servers

    • A
      security
      A
      license
      A
      quality
      Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
      Last updated -
      10
      1,397
      28
      JavaScript
      MIT License
      • Apple
    • -
      security
      F
      license
      -
      quality
      A Model Context Protocol server for Claude Desktop that provides structured memory management across chat sessions, allowing Claude to maintain context and build a knowledge base within project directories.
      Last updated -
      TypeScript
    • A
      security
      A
      license
      A
      quality
      A collection of Model Context Protocol servers that enable Claude Desktop to provide development assistance capabilities with filesystem, Git, shell command, and web search functionality without incurring API usage costs.
      Last updated -
      2
      19
      TypeScript
      MIT License
      • Apple
    • -
      security
      A
      license
      -
      quality
      A custom Model Context Protocol server that gives Claude Desktop and other LLMs access to file system operations and command execution capabilities through standardized tool interfaces.
      Last updated -
      22
      Python
      Apache 2.0
      • Apple
      • Linux

    View all related MCP servers

    MCP directory API

    We provide all the information about MCP servers via our MCP API.

    curl -X GET 'https://glama.ai/api/mcp/v1/servers/Rudra-ravi/mcp-taskmanager'

    If you have feedback or need assistance with the MCP directory API, please join our Discord server