npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

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 task

ThinkTask 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 needednpx will 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_KEY in 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 accomplish
  • todoist_api_key (required): Your Todoist API key
  • anthropic_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.