Taskwarrior Mcp 伺服器
概覽
MCP 伺服器是什麼?TaskWarrior 的 MCP 伺服器是一個創新的解決方案,旨在增強 TaskWarrior 的功能,這是一款流行的任務管理軟體。這個伺服器允許用戶通過提供一個集中平台來管理任務,實現任務同步、協作和遠程訪問,從而更有效地管理任務。使用 MCP 伺服器,用戶可以享受與 TaskWarrior 的無縫集成,隨時隨地管理他們的任務。
TaskWarrior 的 MCP 伺服器功能
- 集中任務管理:MCP 伺服器提供所有任務的單一訪問點,使管理和跟踪進度變得更容易。
- 實時同步:在一個設備上所做的更改會立即反映在所有連接的設備上,確保用戶始終擁有最新的信息。
- 協作工具:用戶可以共享任務並與團隊成員協作,提高生產力和團隊合作。
- 遠程訪問:可以從任何有網絡連接的設備訪問您的任務,方便隨時隨地的用戶。
- 友好的用戶界面:伺服器具有直觀的界面,簡化了任務管理,使所有技能水平的用戶都能輕鬆使用。
如何設置 TaskWarrior 的 MCP 伺服器
- 安裝:從官方庫下載並安裝 MCP 伺服器軟體。
- 配置:按照設置向導配置伺服器設置,包括用戶帳戶和任務同步選項。
- 連接 TaskWarrior:通過更新配置文件以指向伺服器,將 MCP 伺服器與您的 TaskWarrior 安裝集成。
- 開始使用:設置完成後,您可以通過 MCP 伺服器界面開始管理您的任務,享受它提供的所有功能。
常見問題解答
問:TaskWarrior 的 MCP 伺服器是免費使用的嗎?
答:是的,MCP 伺服器是開源的,免費使用,讓任何人都能無成本受益於其功能。
問:我可以在多個設備上使用 MCP 伺服器嗎?
答:當然可以!MCP 伺服器設計為可在多個設備上運行,使您能夠隨時隨地訪問和管理您的任務。
問:運行 MCP 伺服器的系統要求是什麼?
答:MCP 伺服器可以在任何支持所需軟體依賴的系統上運行。請查看官方文檔以獲取詳細要求。
問:我該如何報告問題或請求功能?
答:用戶可以通過官方 GitHub 倉庫報告問題或請求新功能,開發團隊會積極監控反饋。
問:MCP 伺服器用戶是否有社區或支持可用?
答:是的,有一個活躍的用戶和開發者社區,通過論壇和 GitHub 倉庫提供支持。
詳細
TaskWarrior MCP Server
Node.js server implementing Model Context Protocol (MCP) for TaskWarrior operations.
<a href="https://glama.ai/mcp/servers/e8w3e1su1x"> <img width="380" height="200" src="https://glama.ai/mcp/servers/e8w3e1su1x/badge" alt="TaskWarrior Server MCP server" /> </a>Features
- View pending tasks
- Filter tasks by project and tags
- Add new tasks with descriptions, due dates, priorities, projects and tags
- Mark tasks as complete
Note: This runs your local task
binary, so TaskWarrior needs to be installed and configured!
[!WARNING] This currently uses task
id
which is an unstable identifier; taskwarrior sometimes renumbers tasks when new ones are added or removed. In the future this should be more careful, using task UUID instead.
API
Tools
-
get_next_tasks
- Get a list of all pending tasks
- Optional filters:
project
: Filter by project nametags
: Filter by one or more tags
-
add_task
- Add a new task to TaskWarrior
- Required:
description
: Task description text
- Optional:
due
: Due date (ISO timestamp)priority
: Priority level ("H", "M", or "L")project
: Project name (lowercase with dots)tags
: Array of tags (lowercase)
-
mark_task_done
- Mark a task as completed
- Required:
identifier
: Task ID or UUID
Usage with Claude Desktop
Add this to your claude_desktop_config.json
:
{
"mcpServers": {
"taskwarrior": {
"command": "npx",
"args": [
"-y",
"mcp-server-taskwarrior"
]
}
}
}
Installation
npm install -g mcp-server-taskwarrior
Make sure you have TaskWarrior (task
) installed and configured on your system.
Example usage ideas:
- What are my current work tasks?
- Executes:
task project:work next
- Executes:
- TODO: Call my sister (high priority)
- Executes:
task add priority:H Call my sister
- Executes:
- OK, I've called my sister
- Executes:
task done 1
- Executes:
License
This MCP server is licensed under the MIT License. See the LICENSE file for details.
伺服器配置
{
"mcpServers": {
"mcp-server-taskwarrior": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--awwaiid--mcp-server-taskwarrior--mcp-server-taskwarrior",
"node dist/index.js"
],
"env": {}
}
}
}