本项目是专为与 Wrike 集成而设计的 MCP 服务器,它提供了丰富的项目和任务管理功能,能帮助用户高效地进行项目操作、注释管理、附件处理以及用户管理等工作,极大提升了工作效率和管理便捷性。
本 MCP 服务器专为与 Wrike 集成设计,支持以下功能:
git clone https://github.com/katoiek/mcp-server-wrike.git
cd mcp-server-wrike
npm install
npm run build
在 claude_desktop_config.json
中添加以下配置:
{
"mcpServers": {
"wrike": {
"command": "npx",
"args": ["-y", "@katoiek/mcp-server-wrike"],
"env": {
"WRIKE_ACCESS_TOKEN": "your-wrike-access-token",
"WRIKE_HOST": "www.wrike.com",
"NODE_ENV": "production",
"LOG_LEVEL": "warn"
}
}
}
}
POST /api/projects
GET /api/projects
PUT /api/projects/{projectId}
DELETE /api/projects/{projectId}
POST /api/projects/{projectId}/tasks
GET /api/tasks
PUT /api/tasks/{taskId}
DELETE /api/tasks/{taskId}
POST /api/comments
GET /api/comments
PUT /api/comments/{commentId}
DELETE /api/comments/{commentId}
POST /api/attachments
GET /api/attachments/{attachmentId}/download
DELETE /api/attachments/{attachmentId}
claude_desktop_config.json
中是否正确设置了访问令牌。%APPDATA%\Claude\logs
中的日志文件。npm run build
正确构建。warn
或 error
以减少输出。git clone https://github.com/katoiek/mcp-server-wrike.git
npm install
如遇任何问题,请联系开发者。
⚠️ 重要提示
该服务器专为从 Claude Desktop 直接运行而设计,无需使用
.env
文件。