Skip to main content
Glama

@kazuph/mcp-taskmanager

by kazuph
MIT License
322
28
  • Apple

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

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

  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 fetching web content and processing images. This allows Claude Desktop (or any MCP client) to fetch web content and handle images appropriately.
      Last updated -
      1
      278
      15
      JavaScript
      MIT License
      • Apple
    • -
      security
      F
      license
      -
      quality
      A Model Context Protocol server built with mcp-framework that allows users to create and manage custom tools for processing data, integrating with the Claude Desktop via CLI.
      Last updated -
      48
      4
      TypeScript
      • Apple
    • -
      security
      A
      license
      -
      quality
      A Model Context Protocol server that allows Claude Desktop to manage and execute tasks in a queue-based system, supporting planning, execution, and completion phases.
      Last updated -
      322
      2
      TypeScript
      MIT License
      • Apple
    • -
      security
      A
      license
      -
      quality
      A Model Context Protocol server that bridges Claude with Google Tasks, allowing users to manage task lists and tasks directly through Claude interface.
      Last updated -
      5
      TypeScript
      MIT License
      • Apple

    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/kazuph/mcp-taskmanager'

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