drio
Open app

mcp-taskwarrior

Source

A simple MCP Server for Taskwarrior

Catalog onlyCatalog onlySTDIO

Overview

mcp-taskwarrior is a simple MCP Server designed to facilitate the management of tasks in Taskwarrior, allowing users to easily add, update, delete, and list tasks.

To use mcp-taskwarrior, you can either run it using npx or install it locally. For npx, use the command: npx @0xbeedao/mcp-taskwarrior. For local installation, clone the repository, navigate to the directory, and run pnpm install. Then, use it with your favorite MCP client by specifying the path to the tasks script.

  • Add, update, delete, and list tasks in Taskwarrior. - Simple command-line interface for task management. - Integration with MCP clients for seamless usage.
  1. Managing personal tasks and to-do lists.
  2. Collaborating on project tasks with team members.
  3. Automating task updates and management through MCP clients.

Add to your AI client

Use these steps to connect mcp-taskwarrior in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-taskwarrior-0xbeedao": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-taskwarrior-0xbeedao"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-taskwarrior-0xbeedao": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-taskwarrior-0xbeedao"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-taskwarrior-0xbeedao": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-taskwarrior-0xbeedao"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-taskwarrior-0xbeedao": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-taskwarrior-0xbeedao"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-taskwarrior-0xbeedao": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-taskwarrior-0xbeedao"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-taskwarrior-0xbeedao": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-taskwarrior-0xbeedao"
      ]
    }
  }
}

FAQ

What is Taskwarrior?

Taskwarrior is a task management software that helps users keep track of their tasks and projects.

Is mcp-taskwarrior free to use?

Yes! mcp-taskwarrior is open-source and free to use.

Can I use mcp-taskwarrior with any MCP client?

Yes! mcp-taskwarrior is designed to work with various MCP clients.

mcp-taskwarrior — MCP Registry