Todoist MCP Server Ext
概述
安装
工具列表
内容详情
替代品
什么是Todoist MCP服务器扩展版?
这是一个基于Model Context Protocol (MCP)的服务器,可以将Claude与Todoist进行深度集成。它允许用户通过自然语言指令创建、管理和搜索任务,同时支持项目、标签和评论等高级功能。如何使用Todoist MCP服务器扩展版?
只需在Claude桌面配置中添加本服务器,并提供Todoist API令牌即可。您可以通过自然语言指令与Todoist交互,例如创建任务、移动任务或搜索任务。适用场景
适用于需要将日常任务管理与AI助手结合的用户。无论是个人任务规划还是团队协作,都可以通过自然语言快速操作Todoist。主要功能
任务管理
支持创建、更新、删除、完成和重新打开任务,包括子任务、标签、项目和优先级设置。
项目管理
可以创建、更新、删除项目,并支持子项目结构、颜色设置和视图样式(列表/看板)。
标签管理
支持创建、更新、删除标签,可自定义名称、颜色和排序。
评论管理
可以在任务或项目上添加、更新和删除评论,并支持附件上传。
快速添加任务
使用自然语言语法直接创建任务,如'Buy milk tomorrow at 2pm #shopping !p1'。
任务搜索
利用Todoist内置过滤引擎搜索任务,支持关键词、项目、标签等条件。
任务移动
可以将任务移动到不同的项目、部分,或将其设为子任务。
详细任务信息
获取任务的详细信息,包括项目名称、标签和优先级。
分页支持
所有列表操作都支持分页,方便处理大量数据。
错误处理
提供详细的错误信息,帮助用户快速定位问题。
优势
支持完整的Todoist API功能,包括任务、项目、标签和评论管理。
提供自然语言任务创建功能,提升用户体验。
兼容最新的MCP SDK,确保稳定性。
良好的错误处理机制,便于调试。
支持分页和详细任务信息,适合大规模任务管理。
局限性
需要用户提供Todoist API令牌,存在安全风险。
对于非技术用户来说,配置过程可能略显复杂。
目前仅支持Claude桌面客户端,尚未扩展到其他平台。
依赖网络连接,离线时无法使用。
如何使用
安装服务器
从GitHub克隆仓库并安装依赖包,或者通过npm安装。
获取API令牌
登录Todoist账户,在开发者页面获取API令牌。
配置Claude
在Claude桌面配置文件中添加本服务器的启动命令和环境变量。
开始使用
现在可以通过自然语言指令与Todoist交互,如创建任务、搜索任务等。
使用案例
创建任务
用户希望快速创建一个带有标签和项目的任务。
搜索任务
用户想查找包含特定关键词的任务。
移动任务
用户希望将某个任务移动到另一个项目。
创建项目
用户想要创建一个新的项目并设置颜色和视图样式。
添加评论
用户希望在任务上添加一条评论。
常见问题
如何获取Todoist API令牌?
登录Todoist账户,进入设置 → 集成 → 开发者页面,复制API令牌。
如果遇到错误怎么办?
请检查API令牌是否正确,以及网络连接是否正常。查看日志以获取详细错误信息。
支持哪些任务操作?
支持创建、更新、删除、完成、重新打开任务,以及移动任务。
如何添加附件到评论?
在创建评论时,使用附加参数上传文件并提供元数据。
能否在不同平台使用?
目前主要支持Claude桌面客户端,未来计划扩展到其他平台。
相关资源
Todoist API文档
官方Todoist API文档,包含所有可用接口说明。
Model Context Protocol官网
MCP协议的官方网站,提供协议规范和相关工具。
Claude桌面下载
Claude桌面客户端的下载页面。
GitHub仓库
Todoist MCP服务器扩展版的GitHub代码仓库。
NPM包
Todoist MCP服务器扩展版的NPM包。
安装
复制以下命令到你的Client进行配置
{
"mcpServers": {
"todoist-mcp-server": {
"command": "node",
"args": ["/path/to/your/todoist-mcp-server-ext/dist/index.js"],
"env": {
"TODOIST_API_TOKEN": "your_api_token_here"
}
}
}
}
{
"mcpServers": {
"todoist-mcp-server": {
"command": "npx",
"args": ["-y", "@kydycode/todoist-mcp-server-ext@latest"],
"env": {
"TODOIST_API_TOKEN": "your_api_token_here"
}
}
}
}注意:您的密钥属于敏感信息,请勿与任何人分享。
🚀 增强版Todoist MCP服务器扩展
这是一个全面的MCP(模型上下文协议)服务器实现,可实现Claude与Todoist的全面集成。此扩展版本由kydycode从原始的@abhiz123/todoist-mcp-server派生而来,并进行了增强。它包含了额外的功能、改进的兼容性,并且使用完整的Todoist API和最新的MCP SDK(@doist/todoist-api-typescript@4.0.4)增强了功能。
🚀 快速开始
本地开发设置
# 克隆扩展版本仓库
git clone https://github.com/kydycode/todoist-mcp-server-ext.git
cd todoist-mcp-server-ext
# 安装依赖
npm install
# 构建项目
npm run build
获取Todoist API令牌
- 登录你的Todoist账户。
- 导航到设置 → 集成 → 开发者。
- 复制你的API令牌。
在Claude桌面版中使用
添加到你的claude_desktop_config.json文件中:
选项1:运行本地构建版本
{
"mcpServers": {
"todoist-mcp-server": {
"command": "node",
"args": ["/path/to/your/todoist-mcp-server-ext/dist/index.js"],
"env": {
"TODOIST_API_TOKEN": "your_api_token_here"
}
}
}
}
选项2:通过npm/npx运行(推荐用于已发布版本)
{
"mcpServers": {
"todoist-mcp-server": {
"command": "npx",
"args": ["-y", "@kydycode/todoist-mcp-server-ext@latest"],
"env": {
"TODOIST_API_TOKEN": "your_api_token_here"
}
}
}
}
选项3:先全局安装
# 全局安装扩展版本
npm install -g @kydycode/todoist-mcp-server-ext@latest
# 然后在Claude桌面版配置中使用
{
"mcpServers": {
"todoist-mcp-server": {
"command": "todoist-mcp-server-ext",
"env": {
"TODOIST_API_TOKEN": "your_api_token_here"
}
}
}
}
✨ 主要特性
🔧 技术改进
- 更新的Todoist SDK:现在使用
@doist/todoist-api-typescript@4.0.4。 - 更新的MCP SDK兼容性:与MCP SDK 0.5.0兼容。
- 增强的错误处理:全面的错误处理,带有详细的错误消息。
- 改进的TypeScript支持:更好的类型安全性和兼容性。
- 优化的API使用:高效使用Todoist API,包括用于强大搜索的
getTasksByFilter和用于语义任务移动的moveTasks。 - 更好的响应格式:增强的任务、项目和标签格式,提高可读性,包括搜索结果中的项目名称。
✨ 增强的任务管理(10个工具)
- 基于ID的直接操作:使用任务ID进行高效的任务操作。
- 全面的任务创建:支持子任务、标签、项目、部分、优先级。
- 快速添加集成:使用Todoist的快速添加功能以自然语言创建任务。
- 高级任务搜索:使用Todoist的过滤引擎进行强大的关键字搜索(
search: your query)。 - 任务移动功能:在项目、部分之间移动任务,或将其设为子任务。
- 任务状态管理:完成、重新打开和管理任务生命周期。
- 详细的任务输出:搜索和获取任务操作返回更多任务详细信息。
🗂️ 完整的项目管理(5个工具)
- 完整的项目CRUD操作:使用所有属性创建、读取、更新、删除项目。
- 子项目支持:创建分层项目结构。
- 项目自定义:设置颜色、收藏夹、视图样式(列表/看板)。
- 增强的项目列表:改进的项目检索,支持分页和详细格式。
📋 部分管理(4个工具)
- 完整的部分操作:创建、读取、更新、删除部分。
- 特定项目的部分:过滤和管理项目内的部分。
- 部分组织:正确的排序和结构管理。
🏷️ 标签管理(5个工具)
- 完整的标签CRUD操作:创建、读取、更新、删除标签。
- 标签自定义:设置名称、颜色、收藏夹、顺序。
- 分页标签列表:高效检索所有标签。
💬 评论管理(5个工具)
- 完整的评论CRUD操作:在任务和项目上创建、读取、更新、删除评论。
- 附件支持:在评论中添加带有元数据的文件附件。
- 灵活的目标设置:评论可以附加到任务或项目。
- 分页评论检索:高效浏览评论线程。
🛠️ 可用工具(共29个)
任务操作(10个工具)
| 工具 | 详情 |
|---|---|
todoist_create_task |
使用所有选项(子任务、标签、项目、部分、优先级)创建任务。 |
todoist_quick_add_task |
使用Todoist的快速添加语法以自然语言创建任务。 |
todoist_get_tasks |
使用过滤(项目、部分、父任务、标签、ID)和分页检索任务。 |
todoist_get_task |
通过任务ID获取特定任务,并返回详细信息。 |
todoist_update_task |
更新任务属性(内容、描述、截止日期、优先级、标签)。 |
todoist_delete_task |
通过任务ID删除任务。 |
todoist_complete_task |
标记任务为已完成。 |
todoist_reopen_task |
重新打开已完成的任务。 |
todoist_search_tasks |
使用Todoist的过滤引擎搜索任务(例如,search: keyword)。 |
todoist_move_task |
将任务移动到不同的项目、部分,或将其设为子任务。 |
项目操作(5个工具)
| 工具 | 详情 |
|---|---|
todoist_get_projects |
列出所有活动项目,支持分页。 |
todoist_get_project |
通过项目ID获取特定项目。 |
todoist_create_project |
创建新项目(名称、颜色、收藏夹、视图样式、子项目)。 |
todoist_update_project |
更新项目属性。 |
todoist_delete_project |
通过项目ID删除项目。 |
部分操作(4个工具)
| 工具 | 详情 |
|---|---|
todoist_get_sections |
列出部分(所有部分或特定项目的部分)。 |
todoist_create_section |
在项目中创建部分(名称、项目、排序)。 |
todoist_update_section |
更新部分名称。 |
todoist_delete_section |
通过部分ID删除部分。 |
标签操作(5个工具)
| 工具 | 详情 |
|---|---|
todoist_create_label |
创建新标签(名称、颜色、收藏夹、顺序)。 |
todoist_get_label |
通过标签ID获取特定标签。 |
todoist_get_labels |
列出所有标签,支持分页。 |
todoist_update_label |
通过标签ID更新现有标签(名称、颜色、收藏夹、顺序)。 |
todoist_delete_label |
通过标签ID删除标签。 |
评论操作(5个工具)
| 工具 | 详情 |
|---|---|
todoist_create_comment |
在任务或项目上创建新评论(支持附件)。 |
todoist_get_comment |
通过评论ID获取特定评论。 |
todoist_get_comments |
获取任务或项目的评论,支持分页。 |
todoist_update_comment |
通过评论ID更新现有评论。 |
todoist_delete_comment |
通过评论ID删除评论。 |
💻 使用示例
🎯 高级任务创建与管理
"Create task 'Team Meeting @Tomorrow #Work p1'"
"Add task 'Fix critical bug +KydyCode @DevProject L:Urgent L:Backend'"
"Quick add: 'Buy milk tomorrow at 2pm #shopping !p1'"
"Move task with ID {task_id} to project {project_id}"
"Search tasks: search: API deployment"
🗂️ 项目、部分、标签和评论管理
"List all my projects"
"Create project 'Q2 Planning' color:blue favorite:true view:board"
"Get sections for project {project_id}"
"Create label 'HighPriority' color:red isFavorite:true"
"List all labels"
"Add comment 'Great progress on this task!' to task {task_id}"
"Get all comments for project {project_id}"
"Update comment {comment_id} with new content"
🆚 扩展版本与原始版本对比
| 特性 | 原始版本 | 扩展版本 (@kydycode/todoist-mcp-server-ext) |
|---|---|---|
| Todoist SDK版本 | 旧版本 | ✅ @doist/todoist-api-typescript@4.0.4 |
| MCP SDK兼容性 | 旧版本 | ✅ 最新的MCP SDK 0.5.0+ |
| 错误处理 | 基本处理 | ✅ 全面处理,带有详细消息 |
| TypeScript支持 | 有限支持 | ✅ 完整的类型安全性 |
| 任务操作 | 基于搜索,功能有限 | ✅ 10个工具:基于ID的直接操作、moveTasks、强大的搜索、快速添加、类似完整的CRUD操作 |
| 项目管理 | 有限 | ✅ 5个工具:完整的CRUD操作、子项目、分页 |
| 部分管理 | 基本 | ✅ 4个工具:完整的部分操作 |
| 标签管理 | 不可用 | ✅ 5个工具:完整的CRUD操作、分页 |
| 评论管理 | 不可用 | ✅ 5个工具:完整的CRUD操作、附件、分页 |
| API参数处理 | 不一致 | ✅ 正确的参数验证 |
| 响应格式 | 基本 | ✅ 增强的可读性,更多详细信息 |
| 构建系统 | 有问题 | ✅ 干净的编译 |
| 搜索功能 | 基本的本地过滤 | ✅ 强大的getTasksByFilter(Todoist引擎) |
🔧 技术细节
项目结构
src/
├── index.ts # 包含所有工具的主服务器实现
package.json # 依赖和脚本
tsconfig.json # TypeScript配置
README.md # 本文件
local-instructions.md # 个人发布指南
LICENSE
.gitignore
dist/ # 编译后的JavaScript输出(运行`npm run build`后)
├── index.js
└── index.d.ts
从源代码构建
# 安装依赖
npm install
# 构建TypeScript
npm run build
# 测试服务器(需要TODOIST_API_TOKEN)
# 示例:设置令牌并发送列出工具的请求
export TODOIST_API_TOKEN="your_actual_todoist_api_token"
echo '{"jsonrpc": "2.0", "method": "tools/list", "id": 1}' | node dist/index.js
开发脚本
npm run build # 编译TypeScript并使输出可执行
npm run watch # 监视更改并重新构建(不使输出可执行)
npm run prepare # 预发布构建(运行build)
🤝 贡献
欢迎贡献!此扩展版本接受以下方面的贡献:
- 额外的Todoist API端点
- 增强的错误处理和验证
- 性能优化
- 文档改进
- 错误修复和兼容性更新
请将问题和拉取请求提交到扩展版本仓库。
📄 许可证
本项目根据MIT许可证授权 - 详情请参阅LICENSE文件。
🙏 致谢
🐛 问题与支持
- 扩展版本问题:GitHub问题
- 原始仓库:abhiz123/todoist-mcp-server
🔗 相关链接
todoist_create_task
Create a new task in Todoist with comprehensive options including subtasks
参数
content : string*
描述
The content/title of the task
参数
description : string*
描述
Detailed description of the task (optional)
参数
projectId : string*
描述
Project ID to create the task in (optional)
参数
sectionId : string*
描述
Section ID to create the task in (optional)
参数
parentId : string*
描述
Parent task ID to create this as a subtask (optional)
参数
dueString : string*
描述
Natural language due date like 'tomorrow', 'next Monday', 'Jan 23' (optional)
参数
priority : number*
描述
Task priority from 1 (normal) to 4 (urgent) (optional)
参数
labels : array*
描述
Array of label names to assign to the task (optional)
todoist_quick_add_task
Create a task using Todoist's Quick Add feature with natural language parsing
参数
text : string*
描述
Natural language text for quick task creation (e.g., 'Buy milk tomorrow at 2pm #shopping')
参数
note : string*
描述
Additional note for the task (optional)
参数
reminder : string*
描述
Reminder time (optional)
todoist_get_tasks
Get tasks with comprehensive filtering and pagination support
参数
projectId : string*
描述
Filter tasks by project ID (optional)
参数
sectionId : string*
描述
Filter tasks by section ID (optional)
参数
parentId : string*
描述
Filter tasks by parent ID (get subtasks) (optional)
参数
label : string*
描述
Filter tasks by label name (optional)
参数
ids : array*
描述
Array of task IDs to retrieve (optional)
参数
cursor : string*
描述
Pagination cursor for next page (optional)
参数
limit : number*
描述
Maximum number of tasks to return (default: 50, max: 200) (optional)
todoist_get_task
Get a specific task by its ID
参数
taskId : string*
描述
The ID of the task to retrieve
todoist_update_task
Update an existing task by its ID
参数
taskId : string*
描述
The ID of the task to update
参数
content : string*
描述
New content/title for the task (optional)
参数
description : string*
描述
New description for the task (optional)
参数
dueString : string*
描述
New due date in natural language (optional)
参数
priority : number*
描述
New priority level from 1 (normal) to 4 (urgent) (optional)
参数
labels : array*
描述
New array of label names (optional)
todoist_delete_task
Delete a task by its ID
参数
taskId : string*
描述
The ID of the task to delete
todoist_complete_task
Mark a task as complete by its ID
参数
taskId : string*
描述
The ID of the task to complete
todoist_reopen_task
Reopen a completed task by its ID
参数
taskId : string*
描述
The ID of the completed task to reopen
todoist_search_tasks
Search for tasks by content/name (fallback for when ID is not known)
参数
query : string*
描述
Search query to find tasks by content
参数
projectId : string*
描述
Limit search to specific project (optional)
参数
limit : number*
描述
Maximum number of results (default: 10) (optional)
todoist_move_task
Move a single task (and its subtasks, if any) to a different project, section, or make it a subtask of another task. Provide the taskId and exactly one of: projectId, sectionId, or parentId.
参数
taskId : string*
描述
The ID of the task to move.
参数
projectId : string*
描述
The ID of the destination project. (Optional, use only one of projectId, sectionId, parentId)
参数
sectionId : string*
描述
The ID of the destination section. (Optional, use only one of projectId, sectionId, parentId)
参数
parentId : string*
描述
The ID of the parent task to move this task under. (Optional, use only one of projectId, sectionId, parentId)
todoist_bulk_move_tasks
Move multiple tasks (and their respective subtasks, if any; e.g., up to 10-20 parent tasks for best performance) to a different project, section, or make them subtasks of another task. Provide an array of taskIds and exactly one destination (projectId, sectionId, or parentId).
参数
taskIds : array*
描述
An array of task IDs to move.
参数
projectId : string*
描述
The ID of the destination project. (Optional, use only one of projectId, sectionId, parentId)
参数
sectionId : string*
描述
The ID of the destination section. (Optional, use only one of projectId, sectionId, parentId)
参数
parentId : string*
描述
The ID of the parent task to move these tasks under. (Optional, use only one of projectId, sectionId, parentId)
todoist_get_projects
Get all active projects with pagination support
参数
cursor : string*
描述
Pagination cursor for next page (optional)
参数
limit : number*
描述
Maximum number of projects to return (default: 50, max: 200) (optional)
todoist_get_project
Get a specific project by its ID
参数
projectId : string*
描述
The ID of the project to retrieve
todoist_create_project
Create a new project
参数
name : string*
描述
The name of the project
参数
parentId : string*
描述
Parent project ID for creating a sub-project (optional)
参数
color : string*
描述
Project color (optional)
参数
isFavorite : boolean*
描述
Whether to mark as favorite (optional)
参数
viewStyle : string*
描述
Project view style: 'list' or 'board' (optional)
todoist_update_project
Update an existing project
参数
projectId : string*
描述
The ID of the project to update
参数
name : string*
描述
New name for the project (optional)
参数
color : string*
描述
New color for the project (optional)
参数
isFavorite : boolean*
描述
Whether to mark as favorite (optional)
参数
viewStyle : string*
描述
Project view style: 'list' or 'board' (optional)
todoist_delete_project
Delete a project by its ID
参数
projectId : string*
描述
The ID of the project to delete
todoist_get_sections
Get all sections, or sections for a specific project. Supports pagination.
参数
projectId : string*
描述
Filter sections by project ID (optional).
参数
cursor : string*
描述
Pagination cursor for next page (optional).
参数
limit : number*
描述
Maximum number of sections to return (default: 50) (optional).
todoist_create_section
Create a new section in a project
参数
name : string*
描述
The name of the section
参数
projectId : string*
描述
The project ID where the section will be created
参数
order : number*
描述
Order of the section (optional)
todoist_update_section
Update an existing section
参数
sectionId : string*
描述
The ID of the section to update
参数
name : string*
描述
New name for the section
todoist_delete_section
Delete a section by its ID
参数
sectionId : string*
描述
The ID of the section to delete
todoist_create_label
Create a new label.
参数
name : string*
描述
The name of the label.
参数
color : string*
描述
Label color name or code (e.g., 'berry_red', '#FF0000') (optional).
参数
isFavorite : boolean*
描述
Whether the label should be a favorite (optional).
参数
order : number*
描述
The order of the label in the list (optional).
todoist_get_label
Get a specific label by its ID.
参数
labelId : string*
描述
The ID of the label to retrieve.
todoist_get_labels
Get all labels. Supports pagination.
参数
cursor : string*
描述
Pagination cursor for next page (optional).
参数
limit : number*
描述
Maximum number of labels to return (default: 50) (optional).
todoist_update_label
Update an existing label by its ID.
参数
labelId : string*
描述
The ID of the label to update.
参数
name : string*
描述
New name for the label (optional).
参数
color : string*
描述
New color for the label (optional).
参数
isFavorite : boolean*
描述
New favorite status (optional).
参数
order : number*
描述
New order for the label (optional).
todoist_delete_label
Delete a label by its ID.
参数
labelId : string*
描述
The ID of the label to delete.
todoist_create_comment
Create a new comment on a task or project
参数
content : string*
描述
The content/text of the comment
参数
taskId : string*
描述
Task ID to add comment to (provide either taskId or projectId, not both)
参数
projectId : string*
描述
Project ID to add comment to (provide either taskId or projectId, not both)
参数
attachment : object*
描述
Optional file attachment (optional)
todoist_get_comment
Get a specific comment by its ID
参数
commentId : string*
描述
The ID of the comment to retrieve
todoist_get_comments
Get comments for a task or project with pagination support
参数
taskId : string*
描述
Task ID to get comments for (provide either taskId or projectId, not both)
参数
projectId : string*
描述
Project ID to get comments for (provide either taskId or projectId, not both)
参数
cursor : string*
描述
Pagination cursor for next page (optional)
参数
limit : number*
描述
Maximum number of comments to return (optional)
todoist_update_comment
Update an existing comment by its ID
参数
commentId : string*
描述
The ID of the comment to update
参数
content : string*
描述
New content/text for the comment
todoist_delete_comment
Delete a comment by its ID
参数
commentId : string*
描述
The ID of the comment to delete
替代品
R
Rsdoctor
Rsdoctor 是一款专为 Rspack 生态系统打造的构建分析工具,全面兼容 webpack,提供可视化构建分析、多维度性能诊断及智能优化建议,帮助开发者提升构建效率与工程质量。
TypeScript
8.9K
5分
N
Next Devtools MCP
Next.js开发工具MCP服务器,为Claude、Cursor等AI编程助手提供Next.js开发工具和实用程序,包括运行时诊断、开发自动化和文档访问功能。
TypeScript
8.4K
5分
T
Testkube
Testkube是一个面向云原生应用的测试编排与执行框架,提供统一平台来定义、运行和分析测试,支持现有测试工具和Kubernetes基础设施。
Go
6.2K
5分
M
MCP Windbg
一个MCP服务器,将AI模型与WinDbg/CDB集成,用于分析Windows崩溃转储文件和进行远程调试,支持自然语言交互执行调试命令。
Python
9.6K
5分
R
Runno
Runno是一个JavaScript工具包集合,用于在浏览器和Node.js等环境中安全地运行多种编程语言的代码,通过WebAssembly和WASI实现沙盒化执行,支持Python、Ruby、JavaScript、SQLite、C/C++等语言,并提供Web组件、MCP服务器等集成方式。
TypeScript
6.6K
5分

Netdata
Netdata是一个开源实时基础设施监控平台,提供每秒级指标收集、可视化、机器学习驱动的异常检测和自动化告警,无需复杂配置即可实现全栈监控。
Go
9.7K
5分
M
MCP Server
Mapbox MCP服务器是一个Node.js实现的模型上下文协议服务器,为AI应用提供Mapbox地理空间API的访问能力,包括地理编码、兴趣点搜索、路线规划、等时线分析和静态地图生成等功能。
TypeScript
8.8K
4分
U
Uniprof
uniprof是一个简化CPU性能分析的工具,支持多种编程语言和运行时,无需修改代码或添加依赖,可通过Docker容器或主机模式进行一键式性能剖析和热点分析。
TypeScript
8.3K
4.5分

Duckduckgo MCP Server
已认证
DuckDuckGo搜索MCP服务器,为Claude等LLM提供网页搜索和内容抓取服务
Python
76.2K
4.3分

Figma Context MCP
Framelink Figma MCP Server是一个为AI编程工具(如Cursor)提供Figma设计数据访问的服务器,通过简化Figma API响应,帮助AI更准确地实现设计到代码的一键转换。
TypeScript
68.3K
4.5分

Firecrawl MCP Server
Firecrawl MCP Server是一个集成Firecrawl网页抓取能力的模型上下文协议服务器,提供丰富的网页抓取、搜索和内容提取功能。
TypeScript
134.0K
5分

Edgeone Pages MCP Server
EdgeOne Pages MCP是一个通过MCP协议快速部署HTML内容到EdgeOne Pages并获取公开URL的服务
TypeScript
30.5K
4.8分

Minimax MCP Server
MiniMax Model Context Protocol (MCP) 是一个官方服务器,支持与强大的文本转语音、视频/图像生成API交互,适用于多种客户端工具如Claude Desktop、Cursor等。
Python
57.7K
4.8分

Context7
Context7 MCP是一个为AI编程助手提供实时、版本特定文档和代码示例的服务,通过Model Context Protocol直接集成到提示中,解决LLM使用过时信息的问题。
TypeScript
95.6K
4.7分

Exa Web Search
已认证
Exa MCP Server是一个为AI助手(如Claude)提供网络搜索功能的服务器,通过Exa AI搜索API实现实时、安全的网络信息获取。
TypeScript
50.6K
5分

Baidu Map
已认证
百度地图MCP Server是国内首个兼容MCP协议的地图服务,提供地理编码、路线规划等10个标准化API接口,支持Python和Typescript快速接入,赋能智能体实现地图相关功能。
Python
46.5K
4.5分