Skip to main content
Glama

Poker Task Management MCP

by Hirao-Y

poker-mcp

mcp server for poker app YAMLファイルをベースにしたシンプルなタスク管理システム。MCPプロトコル(Model Context Protocol)を使用して、AIアシスタントからのタスク管理を可能にします。

特徴

  • YAML形式でタスクを管理
  • サブタスクの提案と適用
  • タスクステータスの更新
  • Mermaid形式でのガントチャート生成
  • Cursor/VSCodeなどのMCP対応エディタと連携可能

インストール

# リポジトリのクローン git clone https://github.com/Hirao-Y/poker_mcp.git cd poker_mcp # 依存関係のインストール npm install # 環境のセットアップ node setup.js

使い方

サーバーの起動

node mcp_server.js

サーバーは http://localhost:3000 で起動します。

Cursorエディタでの設定

  1. .cursor/mcp.json ファイルに以下を追加します:
{ "mcpServers": { "poker_mcp": { "command": "node", "args": [ "パス/mcp_server.js" ], "cwd": "パス/poker_mcp" } } }
  1. Cursorを再起動して、MCPツールとして利用できます。

APIエンドポイント

  • http://localhost:3000/mcp - JSON-RPCエンドポイント

使用可能なコマンド

  • タスク提案: task.proposeSubtask({ parentId: "T1", title: "サブタスク名", options: { parallel: true, milestone: "2025-03-25" } })
  • 変更適用: task.applyChanges()
  • ステータス更新: task.updateStatus({ taskId: "T1", status: "進行中" })
  • ガントチャート生成: task.generateGantt()

タスクデータの形式

タスクは以下のような階層構造を持ちます:

tasks: - status: 未開始 id: T1 title: タスク1 subtasks: - status: 進行中 id: T1-1 title: サブタスク1 subtasks: [] attributes: T1: depends_on: null parallel: false loop: false design: 基盤構築 milestone: '2025-03-20' T1-1: depends_on: null parallel: false loop: false design: '' milestone: null

制約事項

  • 完了済みのタスクにはサブタスクを追加できません
  • タスクのステータスは「未開始」「進行中」「完了」のいずれかである必要があります

ガントチャート

生成されたガントチャートは tasks/gantt.mmd に保存されます。Mermaid Live Editorで表示できます。

ライセンス

MIT

開発者

Hirao-Y

-
security - not tested
F
license - not found
-
quality - not tested

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

Enables AI assistants to manage tasks through YAML-based storage with subtask suggestions, status updates, and Mermaid Gantt chart generation. Supports hierarchical task structures with attributes like dependencies, milestones, and parallel execution.

  1. 特徴
    1. インストール
      1. 使い方
        1. サーバーの起動
        2. Cursorエディタでの設定
        3. APIエンドポイント
        4. 使用可能なコマンド
      2. タスクデータの形式
        1. 制約事項
          1. ガントチャート
            1. ライセンス
              1. 開発者

                Related MCP Servers

                • A
                  security
                  A
                  license
                  A
                  quality
                  Provides API access to a locally-hosted task management system with features for creating, updating, and organizing tasks, including support for urgency levels, effort estimates, subtasks, and bi-directional sync with Obsidian markdown files.
                  Last updated -
                  12
                  8
                  Python
                  MIT License
                  • Apple
                • A
                  security
                  A
                  license
                  A
                  quality
                  A task management server that helps AI assistants break down user requests into manageable tasks and track their completion with user approval steps.
                  Last updated -
                  17
                  650
                  16
                  JavaScript
                  MIT License
                  • Linux
                  • Apple
                • -
                  security
                  A
                  license
                  -
                  quality
                  Enables AI assistants to manage tasks in Sunsama, including creating tasks, reading daily and backlog tasks, marking tasks complete, and organizing projects through streams.
                  Last updated -
                  24
                  10
                  TypeScript
                  MIT License
                • A
                  security
                  A
                  license
                  A
                  quality
                  Enables AI assistants to interact with ClickUp's task management API for core project workflows, supporting operations like task creation, updates, search, assignment, and team analytics through natural language.
                  Last updated -
                  24
                  2
                  Python
                  MIT License
                  • 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/Hirao-Y/poker_mcp'

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