questlog-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@questlog-mcplist my pending tasks"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
questlog-mcp
An MCP server that exposes Taskwarrior task management to AI assistants and agentic coding tools. It wraps the task CLI and surfaces a set of structured tools for creating, querying, modifying, and managing tasks directly from your AI coding environment.
Requirements
Taskwarrior v3.x (v2 is not supported)
Node.js v18 or later
Install Taskwarrior
macOS (Homebrew):
brew install taskLinux (apt):
sudo apt install taskwarriorVerify the installation and confirm you are on version 3:
task --versionRelated MCP server: Taskwarrior MCP Server
Tools
Tool | Description |
| List tasks with an optional Taskwarrior filter string |
| Get a single task by its numeric ID |
| Add a new task with optional project, priority, tags, and due date |
| Add multiple tasks at once |
| Mark a task as complete by ID |
| Modify an existing task's description, project, priority, tags, or due date |
| Delete a task by ID |
| Add an annotation (note) to a task |
| Get a high-level summary of all tasks with counts and a project breakdown |
| Start time tracking on a task |
| Stop time tracking on a task |
Tool Details
task_list
Lists tasks. Accepts an optional filter string using standard Taskwarrior filter syntax.
filter: "project:work status:pending"
filter: "priority:H due:today"
filter: "+home"task_get
Returns a single task by its numeric ID.
id: 42task_add
Creates a new task. Only description is required.
description: "Write release notes"
project: "work"
priority: "H" // H, M, or L
tags: ["docs", "release"]
due: "2024-12-31"task_bulk_add
Creates multiple tasks in a single call. Accepts an array of task objects with the same fields as task_add. Requires at least one task.
tasks: [
{ description: "Set up CI", project: "infra", priority: "H" },
{ description: "Write tests", project: "infra", tags: ["testing"] },
{ description: "Update docs", due: "2024-12-31" }
]task_complete
Marks a task done by ID.
id: 7task_modify
Updates fields on an existing task. All fields except id are optional. Tags can be added or removed independently.
id: 7
description: "Updated description"
project: "personal"
priority: "L"
tags: { add: ["urgent"], remove: ["waiting"] }
due: "2025-01-15"task_delete
Deletes a task by ID.
id: 7task_annotate
Attaches a note to an existing task.
id: 7
annotation: "Blocked on review from Alice"task_summary
Takes no arguments. Returns task counts by status and a breakdown by project.
task_start / task_stop
Start or stop active time tracking on a task by ID.
id: 7MCP Configuration
The server communicates over stdio using the MCP protocol and can be run directly via npx — no installation or cloning required.
Claude Desktop
Add the following to your Claude Desktop config file.
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"questlog": {
"command": "npx",
"args": ["-y", "questlog-mcp"]
}
}
}Claude Code (CLI)
claude mcp add questlog -- npx -y questlog-mcpCursor
Open Cursor settings, navigate to the MCP section, and add a new server entry:
{
"questlog": {
"command": "npx",
"args": ["-y", "questlog-mcp"]
}
}Windsurf
Add the server to your Windsurf MCP config at ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"questlog": {
"command": "npx",
"args": ["-y", "questlog-mcp"]
}
}
}VS Code (Continue)
Add the server to your Continue config.json:
{
"mcpServers": [
{
"name": "questlog",
"command": "npx",
"args": ["-y", "questlog-mcp"]
}
]
}Development
Clone the repository and install dependencies:
git clone https://github.com/joeymckenzie/taskwarrior-mcp.git
cd taskwarrior-mcp
bun installRun the type checker and linter:
bun run types:check
bun run lintRun the test suite:
bun testBuild the distributable:
bun run buildNote: Bun v1.0 or later is required for development. End users running via
npxonly need Node.js.
License
MIT
This 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
- Flicense-qualityDmaintenanceA task management MCP server that provides tools to create, list, complete, and delete tasks using pluggable storage backends. It enables users to interact with their task lists through natural language using MCP-compatible clients like Claude Desktop.Last updated
- 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.Last updated132MIT
- Alicense-qualityCmaintenanceMCP server that wraps TaskWarrior command-line tool. Provides 22 tools for task management, GTD workflow, and habit tracking.Last updated269MIT
- Alicense-qualityFmaintenanceMCP server for TickTick task management. Enables AI assistants to create, update, list, search, and complete tasks via natural language.Last updated3628MIT
Related MCP Connectors
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
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.
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/JoeyMckenzie/questlog-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server