drio
Open app

mcp-server-todoist

Source

An MCP Server implementation with Todoist

Catalog onlyCatalog onlySTDIO

Overview

mcp-server-todoist is an implementation of an MCP Server that integrates with Todoist, allowing users to manage their tasks and projects effectively.

To use mcp-server-todoist, clone the repository from GitHub, set up the server environment, and connect it with your Todoist account to start managing tasks.

  • Integration with Todoist for task management - Customizable server settings - Real-time task updates
  1. Managing personal tasks and projects through Todoist.
  2. Automating task updates and notifications.
  3. Integrating with other applications for enhanced productivity.

Add to your AI client

Use these steps to connect mcp-server-todoist 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-server-todoist-mariopavlov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-todoist-mariopavlov"
      ]
    }
  }
}

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-server-todoist-mariopavlov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-todoist-mariopavlov"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-todoist-mariopavlov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-todoist-mariopavlov"
      ]
    }
  }
}

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-server-todoist-mariopavlov": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-todoist-mariopavlov"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-todoist-mariopavlov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-todoist-mariopavlov"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-todoist-mariopavlov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-todoist-mariopavlov"
      ]
    }
  }
}