GitHub Configuration

GitHub Configuration

A Model Context Protocol (MCP) server for TickTick task management application

shidhincr

Developer Tools
Visit Server

README

TickTick MCP Server

A Model Context Protocol (MCP) server implementation for TickTick, the popular task management application. This server allows AI assistants to interact with TickTick through the TickTick Open API.

License: MIT Node.js Version TypeScript

📋 Features

  • Get tasks from projects
  • Create new tasks with details like due dates, priorities, and descriptions
  • Update existing tasks
  • Mark tasks as complete
  • Delete tasks
  • Get list of projects
  • Create new projects with custom properties

🚀 Quick Start

Prerequisites

  • Node.js (v18 or higher)
  • TickTick Developer account
  • TickTick API Access Token

Installation

  1. Clone this repository:

    git clone https://github.com/shidhincr/ticktick-mcpserver.git
    cd ticktick-mcpserver
    
  2. Install dependencies:

    npm install
    
  3. Build the project:

    npm run build
    
  4. Set the environment variable with your access token:

    export TICKTICK_ACCESS_TOKEN=your_access_token_here
    
  5. Start the server:

    npm start
    

🔑 Authentication Setup

1. Register a TickTick Developer Account

  1. Visit TickTick Developer Center
  2. Create an account and register your application
  3. Get the client ID and client secret

2. Get Access Token

Follow the OAuth2 flow to obtain an access token:

  1. Redirect users to TickTick authorization page:

    https://ticktick.com/oauth/authorize?scope=tasks:read tasks:write&client_id=YOUR_CLIENT_ID&state=STATE&redirect_uri=YOUR_REDIRECT_URI&response_type=code
    
  2. Exchange the received code for an access token: Make a POST request to https://ticktick.com/oauth/token with:

    • Header: Basic authentication with your client_id and client_secret
    • Body (application/x-www-form-urlencoded):
      • code: the received authorization code
      • grant_type: authorization_code
      • scope: tasks:read tasks:write
      • redirect_uri: your redirect URI
  3. Store the received access token securely.

🛠️ Available Tools

The server implements the following tools for AI interaction:

Task Management

  1. ticktick_get_tasks - Get tasks from a specific project or all projects

    {
      project_id?: string; // Optional project ID
      limit?: number;      // Optional result limit (default: 10)
    }
    
  2. ticktick_create_task - Create a new task

    {
      title: string;       // Required: Task title
      content?: string;    // Optional: Task content
      desc?: string;       // Optional: Task description
      project_id: string;  // Required: Project ID
      due_date?: string;   // Optional: Due date (ISO format)
      priority?: number;   // Optional: Priority (0, 1, 3, 5)
      is_all_day?: boolean; // Optional: All-day task flag
    }
    
  3. ticktick_update_task - Update an existing task

    {
      project_id: string;  // Required: Project ID
      task_id: string;     // Required: Task ID
      title?: string;      // Optional: New title
      // ... other task properties
    }
    
  4. ticktick_complete_task - Mark a task as complete

    {
      project_id: string;  // Required: Project ID
      task_id: string;     // Required: Task ID
    }
    
  5. ticktick_delete_task - Delete a task

    {
      project_id: string;  // Required: Project ID
      task_id: string;     // Required: Task ID
    }
    

Project Management

  1. ticktick_get_projects - Get a list of all projects

  2. ticktick_create_project - Create a new project

    {
      name: string;        // Required: Project name
      color?: string;      // Optional: Color code (e.g. "#F18181")
      view_mode?: string;  // Optional: View mode ("list", "kanban", "timeline")
      kind?: string;       // Optional: Project kind ("TASK", "NOTE")
    }
    

📁 Project Structure

ticktick-mcpserver/
├── dist/                     # Compiled TypeScript (generated after building)
├── src/
│   └── index.ts              # Main server implementation
├── package.json              # Project dependencies and scripts
├── tsconfig.json             # TypeScript configuration
└── README.md                 # Documentation

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

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

📚 API Reference

This project uses the TickTick Open API. For detailed information about API endpoints and parameters, please refer to the official documentation.

📝 License

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

🙏 Acknowledgements

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
MCP Package Docs Server

MCP Package Docs Server

Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.

Featured
Local
TypeScript
Claude Code MCP

Claude Code MCP

An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.

Featured
Local
JavaScript
@kazuph/mcp-taskmanager

@kazuph/mcp-taskmanager

Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.

Featured
Local
JavaScript
Linear MCP Server

Linear MCP Server

Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.

Featured
JavaScript
mermaid-mcp-server

mermaid-mcp-server

A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.

Featured
JavaScript
Jira-Context-MCP

Jira-Context-MCP

MCP server to provide Jira Tickets information to AI coding agents like Cursor

Featured
TypeScript
Linear MCP Server

Linear MCP Server

A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Featured
JavaScript
Sequential Thinking MCP Server

Sequential Thinking MCP Server

This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Featured
Python