Back to MCP Directory
Ticktick
Model Context Protocol moderate risk

Ticktick

MCP server for TickTick enabling AI agents to manage tasks and projects via API, requiring OAuth and offering read/write capabilities.

Connections & Capabilities

Connects To

GitHub

Capabilities

readwrite

Quickstart

Install

pip install -r

Exposed MCP Tools (8)

safe
get_projects

Retrieves a list of all projects in TickTick.

Read-only operation, no data modification.

safe
project_details

Retrieves details of a specific project.

Read-only operation, no data modification.

safe
get_task_details

Retrieves details of a specific task.

Read-only operation, no data modification.

moderate
create_project

Creates a new project in TickTick.

Creates new data, but doesn't modify existing data.

moderate
create_task

Creates a new task within a specified project.

Creates new data, but doesn't modify existing data.

high
update_task

Updates an existing task's details.

Modifies existing task data, potentially causing unintended changes.

moderate
complete_task

Marks a task as complete.

Modifies task status, but reversible.

high
delete_task

Deletes a task from TickTick.

Deletes data, which is potentially irreversible.

Safety Assessment

This MCP server allows AI agents to manage TickTick tasks, which introduces moderate risk. While OAuth is used for authentication, the ability to write and delete tasks means that a compromised or poorly configured AI could cause data loss or disruption. Exercise caution when granting autonomy to AI agents using this MCP.

  • OAuth-based authentication
  • No direct filesystem access
  • Limited scope of operations to TickTick tasks
  • Clear tool descriptions provided
  • Write and delete operations are supported
  • Requires an API key stored in an environment variable
  • Potential for unintended task modification or deletion by AI
  • Internet connectivity required