Connector guide1-minute readEN · DE · IT

How to Connect Todoist to ChatGPT

Connect the Todoist REST API to ChatGPT via MCP. Query tasks, projects, and productivity data with natural language using AnythingMCP.

HCBy HelpCode teamUpdated 1 min read Open source on GitHub

No credit card · 7-day trial · Self-host alternative available

  • 7-day free trial
    No credit card required
  • GDPR & SOC 2 ready
    EU data residency, audit logs
  • Open-source on GitHub
    Source-available BSL-1.1
  • Works with ChatGPT, Claude, Gemini
    Any MCP-compatible client

Summary

Connect the Todoist REST API to ChatGPT via MCP. Query tasks, projects, and productivity data with natural language using AnythingMCP.

Manage Your Tasks with ChatGPT

Todoist has no dedicated MCP connector. With AnythingMCP, you can convert Todoist's REST API into an MCP server and let ChatGPT query your tasks, analyze productivity, and manage projects.

Step-by-Step Guide

Step 1: Deploy AnythingMCP

git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d

Step 2: Get Todoist API Token

Go to Todoist Settings → Integrations → Developer. Copy your API token.

Step 3: Create a REST Connector

Create a REST connector with base URL https://api.todoist.com/rest/v2. Set Bearer token authentication.

Step 4: Expose Key Endpoints

  • GET /tasks — All active tasks
  • GET /projects — All projects
  • GET /sections — Sections within projects
  • GET /labels — All labels
  • GET /comments — Task comments

Step 5: Connect ChatGPT

{
  "mcpServers": {
    "todoist": {
      "url": "http://localhost:4000/mcp"
    }
  }
}

Step 6: Talk to Your Tasks

  • "What tasks are due today?"
  • "How many overdue tasks do I have?"
  • "Show me all high-priority tasks across all projects"
  • "Which project has the most open tasks?"
  • "What did I complete last week?"

Next Steps

Was this guide helpful?

Ready to ship

Ship MCP to your stack in 60 seconds.

Spin up AnythingMCP on managed Cloud or self-host it on your infrastructure. Free for 7 days, no credit card.

Related guides