TaskWarrior MCP Server
TaskWarrior MCP Server
TaskWarriorコマンドラインツールをラップするMCPサーバーです。タスク管理、GTDワークフロー、習慣トラッキングのための22個のツールを提供します。
ツール
基本タスク操作
add_task- タスクを作成。GTDフィールド(context、energy、scheduled、wait、depends)と定期タスク(recur)をサポートmodify_task- タスク属性を更新mark_task_done- UUIDでタスクを完了delete_task- UUIDでタスクを削除list_tasks- フィルター(status、project、tags、dates)でタスクをクエリget_task_details- UUIDで単一タスクを取得start_task- タスクのタイマーを開始stop_task- タスクのタイマーを停止add_annotation- タスクにメモを追加remove_annotation- タスクからメモを削除
依存関係
add_dependency- タスクAをタスクBに依存させるremove_dependency- 依存関係リンクを削除
GTDワークフロー
get_next_actions- コンテキスト、エネルギーレベル、利用可能な時間で実行可能なタスクをフィルタリングprocess_inbox- 処理用に +inbox タグが付いたタスクを取得get_waiting_for- 委任済み/待機中のタスクをブロッカー/日付/プロジェクトごとにグループ化して取得get_blocked_tasks- 依存関係が満たされていないタスクを取得get_project_status- プロジェクトのメトリクス:次のアクション、完了率、陳腐化度weekly_review- GTDレビューデータ:受信箱、完了済み、停滞中のプロジェクト、習慣get_someday_maybe- +someday タグが付いたタスクを取得
バッチ操作
create_project_tree- 1回の呼び出しで複数のタスクと依存関係を持つプロジェクトを作成batch_modify_tasks- 複数のタスクに同じ変更を適用
習慣/定期タスク
get_recurring_tasks- 完了統計、ストリーク、頻度を含む定期タスクを取得
Related MCP server: TickTick MCP Server
要件
ランタイム用に Node.js 18+
開発ワークフロー用に Bun 1.3+
TaskWarriorがインストールされ、
taskコマンドとして利用可能であること
インストール
bun install
bun run build実行
bun run startまたは、MCPクライアント設定で構成します:
{
"mcpServers": {
"taskwarrior": {
"command": "node",
"args": ["/path/to/taskwarrior-mcp/dist/index.js"]
}
}
}Claude Desktop バンドル
このリポジトリにはClaude Desktop用のMCPBマニフェストが含まれています。
bun run mcpb:validate
bun run mcpb:packこれにより dist/taskwarrior-mcp.mcpb が生成されます。
このバンドルにはMCPサーバーが同梱されますが、TaskWarrior自体は同梱されません。ユーザーは引き続き、ホストマシンに task をインストールしておく必要があります。デフォルト以外のセットアップでは、MCPBマニフェストはオプションの TASK_BIN および TASKRC 設定を公開します。
レスポンス形式
すべてのツールはMCP標準形式を返します:
{
"content": [
{
"type": "text",
"text": "{\"tasks\": [...], \"metadata\": {...}, \"insights\": {...}}"
}
]
}GTDツールは、以下を含む拡張レスポンスを返します:
tasks- タスクオブジェクトの配列metadata- カウント(total、actionable、blocked、waiting、completed)insights- 概要、推奨事項、警告groups- プロジェクト/コンテキスト/頻度でグループ化されたタスクrelationships- 依存関係チェーン(該当する場合)
GTD機能
タスクフィールド
scheduled- 作業を開始する日付wait- 日付まで非表示(延期)until- 日付が過ぎるとタスクが期限切れになるcontext- GTDコンテキスト(@home、@work、@phone)energy- 必要なエネルギーレベル(H/M/L)depends- このタスクが依存するタスクUUIDの配列parent- 親タスクのUUIDrecur- 繰り返しパターン(daily、weekly、monthlyなど)tags- 英字、数字、_、-。タグの書き込みはTaskwarriorのtags:属性を使用し、タグのフィルタリングはtags.has:を使用します。これは+tagの短縮形がハイフンを拒否し、代わりに説明文を黙って書き換えるためです。
定期タスク
recur を due と一緒に設定すると、習慣を作成できます:
{
"description": "Take vitamins",
"recur": "daily",
"due": "today",
"context": "@morning"
}TaskWarriorはインスタンスを生成するテンプレートタスク(status:recurring)を作成します。get_recurring_tasks を使用すると、完了率とストリークを確認できます。
開発
bun run typecheck # Type check source
bun run lint # Lint source
bun run test # Run integration tests against disposable Taskwarrior data
bun run build # Build dist/
bun run check # Run typecheck, lint, tests, and buildThis server cannot be installed
Maintenance
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
- AlicenseAqualityDmaintenanceAn MCP server that enables AI assistants to interact with the Taskwarrior command-line task management tool. It allows users to list, create, modify, and organize tasks using projects, tags, and annotations through natural language.132MIT
- FlicenseNot gradedqualityDmaintenanceRemote MCP server for managing TickTick tasks and projects, offering 22 tools for CRUD, search, and GTD workflows via any MCP client.1
- AlicenseAqualityAmaintenanceMCP server for Taskwarrior 3.x — 35 tools for task lifecycle, time tracking, schema validation, and role-based permissions.353Apache 2.0
- AlicenseNot gradedqualityDmaintenanceAn MCP server that wraps the Taskwarrior CLI to allow AI assistants to create, query, modify, and manage tasks directly from agentic coding tools.19MIT
Related MCP Connectors
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
MCP server for generating rough-draft project plans from natural-language prompts.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/omniwaifu/taskwarrior-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server