MCP Hub
Back to servers

@togetherdone/mcp-server

MCP server for TogetherDone - manage your todo lists from Claude Code, Claude Desktop, and other AI assistants

npm55/wk
Updated
Apr 14, 2026

Quick Install

npx -y @togetherdone/mcp-server

@togetherdone/mcp-server

A Model Context Protocol (MCP) server that lets AI assistants manage your TogetherDone todo lists.

Prerequisites

Get an API key at togetherdone.app/settings/api-keys (requires Pro subscription).

Install

Claude Code

claude mcp add togetherdone -e TOGETHERDONE_API_KEY=td_live_your_key -- npx -y @togetherdone/mcp-server

Claude Desktop

Add to your config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "togetherdone": {
      "command": "npx",
      "args": ["-y", "@togetherdone/mcp-server"],
      "env": {
        "TOGETHERDONE_API_KEY": "td_live_your_key_here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project:

{
  "mcpServers": {
    "togetherdone": {
      "command": "npx",
      "args": ["-y", "@togetherdone/mcp-server"],
      "env": {
        "TOGETHERDONE_API_KEY": "td_live_your_key_here"
      }
    }
  }
}

Available Tools

ToolDescription
list_listsGet all accessible todo lists
get_listGet details of a specific list
create_listCreate a new todo list
update_listUpdate list title, color, description, etc.
archive_listArchive (soft-delete) a list
list_itemsGet items in a list (filterable)
create_itemAdd an item with priority, due date, notes
update_itemUpdate item content, status, priority
complete_itemMark an item as completed
archive_itemArchive an item
list_sectionsGet sections in a list
create_sectionCreate a section for organizing items
searchKeyword search across lists and items
get_profileGet the authenticated user's profile

Environment Variables

VariableRequiredDescription
TOGETHERDONE_API_KEYYesYour API key (td_live_xxxxx)

Example Usage

Once configured, you can ask your AI assistant things like:

  • "What's on my todo lists?"
  • "Add 'Buy milk' to my Shopping list"
  • "Mark the 'Send invoice' item as done"
  • "Create a new list called 'Vacation Packing' with the Travel category"
  • "Search for anything related to 'meeting'"

Development

npm install
npm run build
npm run start

License

MIT

Reviews

No reviews yet

Sign in to write a review