{"id":25640775,"url":"https://github.com/awwaiid/mcp-server-taskwarrior","last_synced_at":"2026-06-11T20:31:14.527Z","repository":{"id":278937668,"uuid":"937214663","full_name":"awwaiid/mcp-server-taskwarrior","owner":"awwaiid","description":"MCP Server for TaskWarrior!","archived":false,"fork":false,"pushed_at":"2026-03-27T01:23:21.000Z","size":61,"stargazers_count":46,"open_issues_count":3,"forks_count":10,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-04-13T01:21:46.885Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/awwaiid.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-22T15:58:08.000Z","updated_at":"2026-04-05T19:22:52.000Z","dependencies_parsed_at":"2025-03-16T02:25:19.530Z","dependency_job_id":"97edb232-826f-4044-9963-48e4655b33c3","html_url":"https://github.com/awwaiid/mcp-server-taskwarrior","commit_stats":null,"previous_names":["awwaiid/mcp-server-taskwarrior"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/awwaiid/mcp-server-taskwarrior","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awwaiid%2Fmcp-server-taskwarrior","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awwaiid%2Fmcp-server-taskwarrior/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awwaiid%2Fmcp-server-taskwarrior/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awwaiid%2Fmcp-server-taskwarrior/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/awwaiid","download_url":"https://codeload.github.com/awwaiid/mcp-server-taskwarrior/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awwaiid%2Fmcp-server-taskwarrior/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34217312,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-23T04:46:33.324Z","updated_at":"2026-06-11T20:31:14.517Z","avatar_url":"https://github.com/awwaiid.png","language":"JavaScript","funding_links":[],"categories":["Productivity","Project Management MCP Servers","MCP 服务器精选列表","Legend","サーバー実装","Developer Tools","MCP Servers","Task and Project Management","カテゴリ","🚀 DevOps Productivity","🌐 Web Development","Table of Contents","Server Implementations"],"sub_categories":["Tasks \u0026 Calendar","🛠️ 效率工具与集成 (Office, Project Management, Notes, etc.)","🛠️ \u003ca name=\"other-tools-and-integrations\"\u003e\u003c/a\u003eOther Tools and Integrations","🛠️ \u003ca name=\"other-tools-and-integrations\"\u003e\u003c/a\u003eその他のツールと統合","How to Submit","🛠️ Other Tools and Integrations","🛠️ \u003ca name=\"developer-tools\"\u003e\u003c/a\u003e開発ツール","System Automation"],"readme":"# TaskWarrior MCP Server\n\nNode.js server implementing Model Context Protocol (MCP) for [TaskWarrior](https://taskwarrior.org/) operations.\n\n\u003ca href=\"https://glama.ai/mcp/servers/e8w3e1su1x\"\u003e\n  \u003cimg width=\"380\" height=\"200\" src=\"https://glama.ai/mcp/servers/e8w3e1su1x/badge\" alt=\"TaskWarrior Server MCP server\" /\u003e\n\u003c/a\u003e\n\n## Features\n\n- View pending tasks\n- Filter tasks by project and tags\n- Add new tasks with descriptions, due dates, priorities, projects and tags\n- Mark tasks as complete\n\n**Note**: This runs your local `task` binary, so TaskWarrior needs to be installed and configured!\n\n\u003e [!WARNING]\n\u003e This currently uses task `id` which is an unstable identifier; taskwarrior\n\u003e sometimes renumbers tasks when new ones are added or removed. In the future\n\u003e this should be more careful, using task UUID instead.\n\n## API\n\n### Tools\n\n- **get_next_tasks**\n  - Get a list of all pending tasks\n  - Optional filters:\n    - `project`: Filter by project name\n    - `tags`: Filter by one or more tags\n\n- **add_task**\n  - Add a new task to TaskWarrior\n  - Required:\n    - `description`: Task description text\n  - Optional:\n    - `due`: Due date (ISO timestamp)\n    - `priority`: Priority level (\"H\", \"M\", or \"L\")\n    - `project`: Project name (lowercase with dots)\n    - `tags`: Array of tags (lowercase)\n\n- **mark_task_done**\n  - Mark a task as completed\n  - Required:\n    - `identifier`: Task ID or UUID\n\n## Usage with Claude Desktop\n\nAdd this to your `claude_desktop_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"taskwarrior\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"mcp-server-taskwarrior\"\n      ]\n    }\n  }\n}\n```\n\n## Installation\n\n```bash\nnpm install -g mcp-server-taskwarrior\n```\n\nMake sure you have TaskWarrior (`task`) installed and configured on your system.\n\n## Example usage ideas:\n\n* What are my current work tasks?\n  * Executes: `task project:work next`\n* TODO: Call my sister (high priority)\n  * Executes: `task add priority:H Call my sister`\n* OK, I've called my sister\n  * Executes: `task done 1`\n\n## License\n\nThis MCP server is licensed under the MIT License. See the LICENSE file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawwaiid%2Fmcp-server-taskwarrior","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fawwaiid%2Fmcp-server-taskwarrior","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawwaiid%2Fmcp-server-taskwarrior/lists"}