Connect Todoist to Claude via Bindify
Set up once. Never re-authenticate again.
// Why use Bindify for Todoist?
Todoist OAuth connections break during long sessions, and re-authenticating from the Claude mobile app is impossible — you have to switch to a browser. Bindify keeps Todoist connected across all your devices, so your task management workflow never breaks. Learn more about MCP connection problems →
// Setup steps
Step 1: Sign up
Create a Bindify account at app.bindify.dev. You can start with the free 24-hour trial — no credit card required.
Step 2: Connect Todoist
In your Bindify dashboard, click "Add Connection" and select Todoist. You will be redirected to Todoist to authorize Bindify to access your tasks and projects.
Step 3: Copy your secret URL
After authorization, Bindify generates your permanent MCP URL. Copy it from the dashboard. It looks like:
https://api.bindify.dev/mcp/todoist/{your-credentials}/sse
Step 4: Add to Claude
Follow the instructions below for your Claude client.
// Claude Desktop
Open your Claude Desktop config file and add the Todoist MCP server:
{
"mcpServers": {
"todoist": {
"url": "https://api.bindify.dev/mcp/todoist/{your-credentials}/sse"
}
}
}
Replace {your-credentials} with the value from your Bindify dashboard. Restart Claude Desktop to activate.
// Claude Code
Add the Todoist MCP server using the Claude Code CLI:
claude mcp add todoist \
--transport http \
--url https://api.bindify.dev/mcp/todoist/{your-credentials}
Replace {your-credentials} with the value from your Bindify dashboard.