Description

MCP server for managing todo.txt files - the simple, text-based task management system.

Installation

npx -y @mheob/mcp-server-todo-txt
npm install @mheob/mcp-server-todo-txt
git clone https://github.com/modelcontextprotocol/servers/tree/main/src/mcp-server-todo-txt

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "todotxt-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@mheob/mcp-server-todo-txt"
      ]
    }
  }
}