Skip to main content
Glama
mikemc

Todoist MCP Server

by mikemc

Todoist MCP-Server (Python)

Ein in Python geschriebener Todoist MCP-Server, der die Todoist Python API verwendet. Ich habe den Server zunächst erstellt, indem ich Claude verwendet habe, um diesen TypeScript-Todoist-MCP-Server in Python zu übersetzen. Ich ändere und erweitere schrittweise Funktionen, um sie meinem Arbeitsablauf anzupassen, während ich mit Claude experimentiere, um die Aufgabenverwaltung zu unterstützen.

Installation

Voraussetzungen

Abrufen eines Todoist-API-Tokens

  1. Melde dich bei deinem Todoist-Konto an

  2. Gehen Sie zu Einstellungen → Integrationen

  3. Finden Sie Ihr API-Token unter „Entwickler“

Konfiguration mit Claude Desktop

Fügen Sie den MCP-Server zu Ihrer claude_desktop_config.json hinzu.

{
  "mcpServers": {
    "todoist": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/mikemc/todoist-mcp-server",
        "todoist-mcp"
      ],
      "env": {
        "TODOIST_API_TOKEN": "your_todoist_api_token"
      }
    }
  }
}

Oder, um von einer lokalen Kopie aus zu starten,

{
  "mcpServers": {
    "todoist": {
      "command": "uvx",
      "args": [
        "--from",
        "/absolute/path/to/todoist-mcp-server",
        "todoist-mcp"
      ],
      "env": {
        "TODOIST_API_TOKEN": "your_todoist_api_token"
      }
    }
  }
}

Related MCP server: Todoist MCP Server

Verfügbare Tools

Um die aktuell verfügbaren Tools anzuzeigen, führen Sie

# With GNU grep installed as ggrep (as with `brew install grep` on Mac)
ggrep -Po '(?<=^mcp.tool\(\)\()([^)]+)' src/main.py

Stand 26.05.2025

  • Projekte

    • todoist_get_projects

    • todoist_get_project

    • todoist_add_project

    • todoist_update_project

    • todoist_delete_project

  • Abschnitte

    • todoist_get_sections

    • todoist_get_section

    • todoist_add_section

    • todoist_update_section

    • todoist_delete_section

  • Aufgaben

    • todoist_get_task

    • todoist_get_tasks

    • todoist_filter_tasks

    • todoist_add_task

    • todoist_update_task

    • todoist_complete_task

    • todoist_uncomplete_task

    • todoist_move_task

    • todoist_delete_task

  • Kommentare

    • todoist_get_comment

    • todoist_get_comments

    • todoist_add_comment

    • todoist_update_comment

    • todoist_delete_comment

Lizenz

Dieses Projekt ist unter der MIT-Lizenz lizenziert. Weitere Informationen finden Sie in der Datei LICENSE .

Install Server
A
license - permissive license
A
quality
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer

  • A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…

  • Persistent context for Claude. Your AI always knows your projects and next actions across sessions.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mikemc/todoist-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server