Skip to main content
Glama
Rudra-ravi

MCP TaskManager

by Rudra-ravi

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

Related MCP server: MCP Development Server

開発者向け

前提条件

  • 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"
}
A
license - permissive license
A
quality
D
maintenance

Maintenance

UpdatingMaintainers
UpdatingResponse time
Release cycle
0Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    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.
    10
    154
    215
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    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.
    22
    6
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    A Model Context Protocol server that allows integration with Claude Desktop by creating and managing custom tools that can be executed through the MCP framework.
    88

View all related MCP servers

Related MCP Connectors

  • A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…

  • MCP server for generating rough-draft project plans from natural-language prompts.

  • MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.

View all MCP Connectors

Latest Blog Posts

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