todoist-mcp-lite
Provides a direct passthrough to the Todoist REST API v2, enabling task management, project operations, and other Todoist actions via a single tool.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@todoist-mcp-litelist my tasks"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@sjalq/todoist-mcp-lite
Minimal Todoist MCP server with direct API passthrough. Built with pure functional principles and minimal code.
Features
โจ Single tool with direct Todoist REST API v2 passthrough
๐ Supports all HTTP methods (GET, POST, PUT, PATCH, DELETE)
๐ CLI
--tokenflag or environment variable authentication๐ฆ NPX-ready - no installation required
๐งช Comprehensive test suite (property-based + integration + MCP protocol tests)
๐ฏ Pure functional JavaScript - minimal dependencies
๐ก Token-efficient tool descriptions
Related MCP server: mcp-todoist
Getting Your Todoist API Token
Log in to Todoist
Go to Settings โ Integrations โ Developer
Copy your API token from the "API token" section
Usage
Via NPX (recommended)
npx @sjalq/todoist-mcp-lite --token YOUR_TODOIST_TOKENOr with environment variable:
export TODOIST_API_TOKEN=YOUR_TODOIST_TOKEN
npx @sjalq/todoist-mcp-liteIn Claude Desktop config
Add to your ~/.claude.json:
{
"mcpServers": {
"todoist": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@sjalq/todoist-mcp-lite"],
"env": {
"TODOIST_API_TOKEN": "your_token_here"
}
}
}
}Or with --token flag:
{
"mcpServers": {
"todoist": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@sjalq/todoist-mcp-lite", "--token", "your_token_here"]
}
}
}Tool
The server exposes a single tool: todoist_api
Parameters
endpoint(string, required): API endpoint (e.g.,/tasks,/projects/123)method(string, required): HTTP method (GET,POST,PUT,PATCH,DELETE)body(object, optional): Request body for POST/PUT/PATCH requests
Response
Returns JSON with:
status: HTTP status codeok: boolean indicating successdata: Response data from Todoist API (or error object)
Example
{
"endpoint": "/tasks",
"method": "POST",
"body": {
"content": "Buy milk",
"due_string": "tomorrow"
}
}API Documentation
Full Todoist REST API v2 docs: https://developer.todoist.com/rest/v2
Development
Clone and Install
git clone https://github.com/sjalq/todoist-mcp-lite.git
cd todoist-mcp-lite
npm installRunning Tests
Property-based tests run without API token:
npm testIntegration and MCP protocol tests require a token:
export TODOIST_API_TOKEN=your_token
npm testTest suite includes:
4 property-based tests (pure function validation)
6 integration tests (real API calls)
4 MCP protocol tests (full server/client interaction)
Local Testing with MCP Inspector
npx @modelcontextprotocol/inspector node index.js --token YOUR_TOKENThen open http://localhost:6274 to interactively test the server.
Architecture
Pure functional design with three core functions:
getToken(args)- Extract token from CLI args or environmentcallTodoist(token)- Curried API caller returning async functioncreateServer(apiCall)- MCP server factory with tool registration
Zero mocks, zero state, just functions.
License
ISC - see LICENSE file for details.
Contributing
Issues and PRs welcome at https://github.com/sjalq/todoist-mcp-lite
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/sjalq/todoist-mcp-lite'
If you have feedback or need assistance with the MCP directory API, please join our Discord server