Checkvist MCP Server

Checkvist MCP Server

MCP server for Checkvist API integration, enabling Claude to read and write to Checkvist checklists.

Category
访问服务器

README

Checkvist MCP Server

MCP server for Checkvist API integration, enabling Claude to read and write to Checkvist checklists.

Features

  • Complete checklist CRUD operations (list, get, create, update, delete)
  • Complete task management (create, update, close, reopen, delete, invalidate)
  • Repeating task configuration
  • Task assignment to users
  • Import multiple tasks at once
  • Complete notes/comments management (get, create, update, delete)
  • User profile information
  • Full support for Checkvist's smart syntax (^due dates, #tags, !priority)
  • Helpful error messages with actionable tips

Installation

npm install
npm run build

Configuration

  1. Get your Checkvist API key from your profile page: https://checkvist.com/auth/profile
  2. Create a .env file:
cp .env.example .env
  1. Edit .env and add your credentials:
CHECKVIST_USERNAME=your_email@example.com
CHECKVIST_API_KEY=your_api_key_here

Claude Desktop Configuration

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "checkvist": {
      "command": "node",
      "args": [
        "/Users/matsingerdal/Developer/GitHub/checkvist-mcp/dist/index.js"
      ]
    }
  }
}

Available Tools

Checklist Management

  • checkvist_list_checklists - Get all checklists (read-only)
  • checkvist_get_checklist - Get specific checklist info (read-only)
  • checkvist_create_checklist - Create a new checklist
  • checkvist_update_checklist - Update checklist name or visibility
  • checkvist_delete_checklist - Delete checklist (marks for deletion)

Task Management

  • checkvist_get_tasks - Get all tasks as raw JSON (read-only)
  • checkvist_get_tasks_summary - Get all tasks in readable text format (read-only)
  • checkvist_get_tasks_paginated - Get tasks in pages to read entire large checklists (RECOMMENDED, read-only)
  • checkvist_get_task - Get specific task with parent hierarchy as JSON (read-only)
  • checkvist_get_task_tree - Get a specific task and ALL its subtasks in readable text (read-only)
  • checkvist_create_task - Create a new task (supports assignee_ids)
  • checkvist_update_task - Update existing task (supports assignee_ids)
  • checkvist_close_task - Mark task as complete
  • checkvist_reopen_task - Reopen completed task
  • checkvist_delete_task - Delete task and children
  • checkvist_invalidate_task - Mark task as invalidated (status=2)
  • checkvist_set_repeating_task - Configure repeating task schedule
  • checkvist_import_tasks - Import multiple tasks at once

Notes/Comments

  • checkvist_get_notes - Get all notes for a task (read-only)
  • checkvist_create_note - Add a note to a task
  • checkvist_update_note - Update existing note
  • checkvist_delete_note - Delete a note

User Information

  • checkvist_get_current_user - Get authenticated user profile (read-only)

Reading Large Checklists

For large checklists with many tasks, use the right approach based on checklist size:

Strategy 1: Quick Preview (BEST for VERY large checklists) ⭐

checkvist_get_tasks_summary with preview: true

  • Shows ONLY top-level tasks (no subtasks)
  • Minimal data, perfect for huge checklists (1000+ tasks)
  • Automatically uses compact mode
  • Get quick overview, then drill down with get_task_tree
  • Example:
    checkvist_get_tasks_summary(
      checklist_id: 941803,
      preview: true
    )
    
  • Output:
    📋 Checklist Summary (5 top-level tasks, 847 total)
    ⚡ PREVIEW MODE: Showing only top-level tasks
    
    [ ] Main Project [12345]
    [ ] Archive [12350]
    [ ] Notes [12351]
    [ ] Resources [12352]
    [ ] Templates [12353]
    
    💡 TIP: Use checkvist_get_task_tree with a specific task ID to explore subtasks
    

Strategy 2: See Full Structure (for medium/large checklists)

checkvist_get_tasks_summary with compact: true

  • Shows ENTIRE checklist in ultra-compact format
  • Only displays: status, title, and ID (no metadata, no notes)
  • Works for hundreds of tasks
  • Example:
    checkvist_get_tasks_summary(
      checklist_id: 941803,
      compact: true,
      max_depth: 2
    )
    

Strategy 3: Explore Specific Branches

checkvist_get_task_tree (for detailed view of one branch)

  • Get ONE specific task and ALL its subtasks with full details
  • Shows metadata, notes, due dates, priorities, tags
  • Perfect when you found interesting task in compact view
  • Example: checkvist_get_task_tree(checklist_id: 941803, task_id: 71218558)

Strategy 4: Full Details for Smaller Checklists

checkvist_get_tasks_summary with compact: false (default)

  • Shows everything with full metadata and notes
  • Only use for checklists with <50 tasks
  • May be too large for bigger checklists

checkvist_get_tasks

  • Returns raw JSON structure
  • May be stored in files that are harder to read
  • Use only when you need to process JSON programmatically

Recommended Workflows

Option 1: Read Everything in Pages ⭐ (BEST for reading entire checklist)

1. checkvist_get_tasks_paginated(checklist_id: X, page: 1)
   → Shows first 3 top-level tasks with ALL their subtasks
2. checkvist_get_tasks_paginated(checklist_id: X, page: 2)
   → Shows next 3 top-level tasks with ALL their subtasks
3. Continue until you've read all pages

Claude can read ALL tasks this way without hitting size limits!

Option 2: Preview + Drill Down (faster for finding specific info)

1. checkvist_get_tasks_summary(checklist_id: X, preview: true)
   → See all top-level tasks (just 5-10 items)
2. Find interesting task in the preview
3. checkvist_get_task_tree(checklist_id: X, task_id: Y)
   → Get all details for that specific branch

Smart Syntax Support

Checkvist supports smart syntax in task content:

  • ^tomorrow - Set due date
  • #tag - Add tag
  • !3 - Set priority (0-9)
  • @username - Assign to user

Enable parsing with parse_tasks: true or parse: true parameters.

Development

# Watch mode
npm run dev

# Build
npm run build

# Start
npm start

API Documentation

Full Checkvist API docs: https://checkvist.com/auth/api

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选