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

ticktick-mcp-server-interactive

v1.2.0

Published

Model Context Protocol server for TickTick task management integration with AI assistants like Claude

Readme

@ticktick-ecosystem/mcp-server

A Model Context Protocol (MCP) server for integrating TickTick task management with AI applications like Claude, ChatGPT, and other LLM-powered tools.

npm version License: MIT Node.js Version

✨ Features

🛠️ Tools (AI Actions)

  • Task Management

    • create_task - Create new tasks with due dates, priorities, and projects
    • get_tasks - Retrieve tasks with filtering options
    • update_task - Modify existing tasks
    • complete_task - Mark tasks as completed
    • delete_task - Remove tasks
    • search_tasks - Search tasks by title or content
    • get_today_tasks - Get today's scheduled tasks
    • get_overdue_tasks - Get overdue tasks
  • Project Management

    • get_projects - List all projects
    • create_project - Create new projects
    • update_project - Modify project details
    • delete_project - Remove projects
    • get_project_tasks - Get tasks within a specific project

📊 Resources (Data Access)

  • ticktick://tasks/today - Today's tasks
  • ticktick://tasks/overdue - Overdue tasks
  • ticktick://tasks/completed - Recently completed tasks
  • ticktick://projects/all - All projects
  • ticktick://stats/summary - Productivity statistics

💡 Prompts (AI Assistance)

  • daily_planning - AI-powered daily task planning
  • task_breakdown - Break complex tasks into subtasks
  • priority_analysis - Analyze and suggest task priorities
  • weekly_review - Review productivity and plan ahead
  • project_planning - Comprehensive project planning

🚀 Quick Start

Demo Mode (No Authentication Required)

Perfect for testing and evaluation:

# Install and run in demo mode
npm install -g @ticktick-ecosystem/mcp-server
ticktick-mcp-server --demo

Or with npx:

npx @ticktick-ecosystem/mcp-server --demo

Claude Desktop Integration (Demo Mode)

Add to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "ticktick": {
      "command": "npx",
      "args": ["@ticktick-ecosystem/mcp-server", "--demo"],
      "env": {
        "TICKTICK_DEMO_MODE": "true"
      }
    }
  }
}

Restart Claude Desktop and start asking about your tasks!

📦 Installation

npm install @ticktick-ecosystem/mcp-server

Or install globally:

npm install -g @ticktick-ecosystem/mcp-server

🔧 Authentication Setup (For Real Data)

1. Get TickTick API Credentials

  1. Visit TickTick Developer Portal
  2. Create a new application
  3. Note your Client ID and Client Secret
  4. Set OAuth Redirect URL to: http://localhost:3000/callback

2. Environment Configuration

Create a .env file or set environment variables:

# Required
TICKTICK_CLIENT_ID=your_client_id_here
TICKTICK_CLIENT_SECRET=your_client_secret_here

# Optional (will be obtained through OAuth if not provided)
TICKTICK_REDIRECT_URI=http://localhost:3000/callback
TICKTICK_ACCESS_TOKEN=your_access_token_here
TICKTICK_REFRESH_TOKEN=your_refresh_token_here

3. Interactive Setup (Recommended)

# Install the package
npm install -g @ticktick-ecosystem/mcp-server

# Run interactive setup
npx @ticktick-ecosystem/mcp-server --setup

This will guide you through:

  1. Getting TickTick API credentials
  2. OAuth authorization flow
  3. Automatic configuration saving to ~/.ticktick-mcp/config.json

🎯 Usage Examples

Creating Tasks with AI

User: "Create a task to review the quarterly budget report, due next Friday with high priority"

AI Response: "I'll create that task for you with high priority and set the due date for next Friday."

Result: New task created in TickTick with proper priority and due date

Daily Planning

User: "Help me plan my day"

AI Response: Based on your current tasks, I recommend:
1. Morning: Focus on the quarterly budget review (high priority)
2. Afternoon: Team meeting preparation
3. Evening: Code review for the new feature

Would you like me to adjust any task priorities or deadlines?

Project Management

User: "Show me all tasks in my 'Website Redesign' project that are overdue"

AI Response: [Lists overdue tasks with details and suggests next actions]

🔧 Configuration

Demo Mode Features

  • ✅ No authentication required
  • ✅ Uses realistic mock data
  • ✅ All functions work with sample tasks and projects
  • ✅ Perfect for testing and evaluation
  • ✅ Safe for public demonstrations

Production Mode Features

  • 🔄 Real-time TickTick synchronization
  • 🔐 OAuth 2.0 secure authentication
  • 📊 Access to your actual tasks and projects
  • 🔄 Automatic token refresh
  • 📈 Real productivity statistics

Claude Desktop Configuration (Production)

{
  "mcpServers": {
    "ticktick": {
      "command": "npx",
      "args": ["@ticktick-ecosystem/mcp-server"],
      "env": {
        "TICKTICK_CLIENT_ID": "your_client_id",
        "TICKTICK_CLIENT_SECRET": "your_client_secret",
        "TICKTICK_ACCESS_TOKEN": "your_access_token",
        "TICKTICK_REFRESH_TOKEN": "your_refresh_token"
      }
    }
  }
}

Other MCP Clients

The server uses stdio transport and is compatible with any MCP-compliant client:

# For MCP Inspector
npx @modelcontextprotocol/inspector npx @ticktick-ecosystem/mcp-server --demo

# For custom integrations
npx @ticktick-ecosystem/mcp-server

📊 API Reference

Task Priority Levels

  • 0 - None
  • 1 - Low
  • 3 - Medium
  • 5 - High

Date Formats

  • Due dates: ISO format (YYYY-MM-DD or YYYY-MM-DDTHH:mm:ss)
  • All dates are in UTC unless timezone is specified

Response Format

All tools return structured responses:

Success:

{
  "success": true,
  "data": { ... },
  "message": "Operation completed successfully"
}

Error:

{
  "success": false,
  "error": "Error description"
}

🧪 Testing

# Quick demo test
npm run demo

# With MCP Inspector
npm install -g @modelcontextprotocol/inspector
npx @modelcontextprotocol/inspector npx @ticktick-ecosystem/mcp-server --demo

See TESTING.md for comprehensive testing instructions.

🔒 Security & Privacy

  • OAuth 2.0 secure authentication
  • Tokens stored locally only
  • No data collection or telemetry
  • Open source and auditable
  • Demo mode uses no real data

🛠️ Development

# Clone repository
git clone https://github.com/ticktick-ecosystem/mcp-server
cd mcp-server

# Install dependencies
npm install

# Build
npm run build

# Development mode
npm run dev

# Run tests
npm test

# Demo mode
npm run demo

📖 Documentation

🤝 Contributing

We welcome contributions! Please see our contributing guidelines:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🆘 Support

🌟 Related Projects

🙏 Acknowledgments

  • Anthropic for developing the Model Context Protocol
  • TickTick for providing the task management API
  • The MCP community for feedback and contributions

Made with ❤️ for the TickTick and MCP communities

🎉 Ready to supercharge your productivity with AI-powered task management!