thinktask-mcp
v1.0.18
Published
ThinkTask: Intelligent Todoist MCP Service - Transform natural language into perfect Todoist structure
Readme
🎯 ThinkTask: Intelligent Todoist MCP Service
Transform any natural language instruction into perfect Todoist structure
Why ThinkTask?
Traditional task management tools just create basic tasks. ThinkTask uses AI to understand your goals and creates comprehensive project structures with intelligent scheduling, dependencies, and organization.
Traditional approach:
"Add task: Call mom" → Creates one basic taskThinkTask approach:
"Call mom tomorrow at 2pm" → Creates scheduled task with proper timing
"Plan my wedding for May 15" → Creates complete wedding project with venues, catering, photography, legal, budget sections and 20+ organized tasks
"Launch my consulting business" → Creates business launch project with research, legal, marketing, operations phases🌟 Features
- 🤖 AI-Powered Planning: Uses Claude 3.5 Sonnet for intelligent task breakdown
- 🗣️ Natural Language: Just describe what you want to accomplish
- 📅 Smart Scheduling: Understands "tomorrow", "next week", "two months before", etc.
- 🌍 Multi-Language: Supports multiple languages with proper timezone handling
- 🔗 Dependency Resolution: Creates tasks in the right order
- 📊 Project Structure: Automatically creates projects, sections, and tasks as needed
🔌 Connect to MCP Clients
🖥️ Claude Desktop
To use ThinkTask as an MCP tool in Claude Desktop, add the following to your mcpServers configuration:
{
"mcpServers": {
"thinktask": {
"command": "npx",
"args": ["-y", "thinktask-mcp@latest"],
"env": {
"TODOIST_API_TOKEN": "your_todoist_api_token",
"ANTHROPIC_API_KEY": "your_anthropic_api_key"
}
}
}
}✅ Prerequisites
- Node.js 18 or newer
- A valid Todoist API token (found in your Todoist Integrations settings)
- No manual installation needed –
npxwill automatically download and run the latest version from npm
🔑 Environment Variables
TODOIST_API_TOKEN: required to authenticate with Todoist- Optionally, you may set
ANTHROPIC_API_KEYin your environment for Claude AI features
Once added, Claude Desktop will be able to call ThinkTask as a tool and return structured tasks directly to Todoist.
🔧 API Endpoints
- GET
/api/mcp- Service information - GET
/api/mcp/tools- Available MCP tools - POST
/api/mcp/call-tool- Execute planning tool - GET
/api/mcp/health- Health check
🛠️ MCP Tool: plan_intelligent_tasks
Transform natural language into comprehensive Todoist structures.
Parameters:
instruction(required): What you want to accomplishtodoist_api_key(required): Your Todoist API keyanthropic_api_key(optional): Claude API key if not set in environment
Examples:
Simple Task
{
"name": "plan_intelligent_tasks",
"arguments": {
"instruction": "Call mom tomorrow at 2pm",
"todoist_api_key": "your_todoist_key"
}
}Complex Project
{
"name": "plan_intelligent_tasks",
"arguments": {
"instruction": "Plan my wedding for May 15 - I need to organize everything from venue to catering",
"todoist_api_key": "your_todoist_key"
}
}🧪 Example Use Cases
- 📅 Event Planning: "Plan my birthday party next month"
- 🏠 Moving: "I'm moving to a new apartment in 3 weeks"
- 💼 Business Launch: "Start my consulting business"
- 🎓 Education: "Prepare for my final exams in December"
- 🎯 Personal Goals: "Get in shape for summer"
- 🏠 Home Projects: "Renovate my kitchen"
🏗️ Architecture
ThinkTask MCP Service ├── 🤖 AI Service (Claude 3.5 Sonnet) │ └── Natural language → Structured JSON ├── 📋 Tasks Service (Todoist API) │ └── Execute API calls with dependency resolution ├── 🔧 MCP Service │ └── Handle MCP protocol and tool calls └── 🌐 REST API └── HTTP endpoints for direct access
Made with ❤️ for productivity enthusiasts who believe AI should think, not just automate.
