禅道任务管理助手
快速获取和管理禅道中的个人任务和Bug。提供任务、Bug和产品管理功能。
Installation
Installing for Claude Desktop
Manual Configuration Required
This MCP server requires manual configuration. Run the command below to open your configuration file:
npx mcpbar@latest edit -c claude
This will open your configuration file where you can add the 禅道任务管理助手 MCP server manually.
MCP-Zentao
禅道项目管理系统的高级API集成包,提供任务管理、Bug跟踪等功能的完整封装,专为Cursor IDE设计的MCP扩展。
安装
npm install @bigtian/mcp-zentao -g
使用方法
首次使用(配置禅道信息)
首次使用时,需要提供禅道的配置信息:
zentao '{"config":{"url":"https://your-zentao-url","username":"your-username","password":"your-password","apiVersion":"v1"},"name":"张三","age":25,"skills":["编程","设计"]}'
配置信息会被保存在用户目录下的 .zentao/config.json
文件中,后续使用时无需再次提供。
后续使用
配置完成后,只需要提供任务相关的信息即可:
zentao '{"name":"张三","age":25,"skills":["编程","设计"]}'
更新配置
如果需要更新禅道配置信息,只需要再次提供 config 参数即可:
zentao '{"config":{"url":"https://new-zentao-url","username":"new-username","password":"new-password","apiVersion":"v1"},"name":"张三","age":25,"skills":["编程","设计"]}'
配置文件位置
配置文件保存在用户目录下的 .zentao/config.json
文件中:
- Windows:
C:\Users\你的用户名\.zentao\config.json
- macOS/Linux:
~/.zentao/config.json
功能特性
- 支持配置信息的持久化存储
- 自动管理禅道API的认证信息
- 提供任务创建、更新、完成等功能
- 支持Bug跟踪和处理
- 完整的类型定义支持
注意事项
- 配置文件中包含敏感信息,请确保文件权限设置正确
- 建议定期更新密码,以确保安全性
- 如遇到问题,可以删除配置文件重新配置
许可证
MIT
特点
- 完整的禅道API封装
- 简单易用的接口设计
- 类型安全(TypeScript支持)
- 完善的错误处理
- 自动化的认证管理
与其他项目的区别
不同于通用的数据库操作工具(如 mcp-mysql-server),本项目专注于提供:
- 禅道系统特定的业务功能
- 高级别的API抽象
- 完整的禅道工作流支持
- 开箱即用的禅道集成方案
本地开发
- 克隆仓库
git clone https://github.com/bigtian/mcp-zentao.git
cd mcp-zentao
- 安装依赖
npm install
- 运行测试
npm test
- 构建项目
npm run build
Docker 使用
使用 docker-compose(推荐)
- 复制环境变量模板并修改配置
cp .env.example .env
# 编辑 .env 文件,填入你的禅道系统配置
- 启动服务
docker-compose up -d
- 查看日志
docker-compose logs -f
手动使用 Docker
- 构建镜像
docker build -t mcp-zentao .
- 运行容器
docker run -d \
--name mcp-zentao \
-p 3000:3000 \
-e ZENTAO_URL=your-zentao-url \
-e ZENTAO_USERNAME=your-username \
-e ZENTAO_PASSWORD=your-password \
-e ZENTAO_API_VERSION=v1 \
-v $(pwd)/logs:/app/logs \
mcp-zentao
在 Cursor IDE 中配置
在 Cursor IDE 的配置文件中添加以下配置:
{
"mcpServers": {
"zentao": {
"url": "http://localhost:3000"
}
}
}
基本使用
import { ZentaoAPI } from '@bigtian/mcp-zentao';
// 创建API实例
const api = new ZentaoAPI({
url: 'https://your-zentao-url', // 你的禅道系统URL
username: 'your-username', // 用户名
password: 'your-password', // 密码
apiVersion: 'v1' // API版本,默认为v1
});
// 获取我的任务列表
async function getMyTasks() {
try {
const tasks = await api.getMyTasks();
console.log('我的任务:', tasks);
} catch (error) {
console.error('获取任务失败:', error);
}
}
// 获取我的Bug列表
async function getMyBugs() {
try {
const bugs = await api.getMyBugs();
console.log('我的Bug:', bugs);
} catch (error) {
console.error('获取Bug失败:', error);
}
}
// 完成任务
async function finishTask(taskId: number) {
try {
await api.finishTask(taskId);
console.log('任务已完成');
} catch (error) {
console.error('完成任务失败:', error);
}
}
// 解决Bug
async function resolveBug(bugId: number) {
try {
await api.resolveBug(bugId, {
resolution: 'fixed',
resolvedBuild: 'trunk',
comment: '问题已修复'
});
console.log('Bug已解决');
} catch (error) {
console.error('解决Bug失败:', error);
}
}
API文档
ZentaoAPI 类
构造函数
constructor(config: {
url: string; // 禅道系统URL
username: string; // 用户名
password: string; // 密码
apiVersion?: string; // API版本,默认为v1
})
方法
-
getMyTasks(): Promise<Task[]>
- 获取当前用户的任务列表
- 返回: Promise<Task[]>
-
getMyBugs(): Promise<Bug[]>
- 获取当前用户的Bug列表
- 返回: Promise<Bug[]>
-
finishTask(taskId: number): Promise<void>
- 完成指定ID的任务
- 参数: taskId - 任务ID
- 返回: Promise
-
resolveBug(bugId: number, resolution: BugResolution): Promise<void>
- 解决指定ID的Bug
- 参数:
- bugId - Bug ID
- resolution - Bug解决方案
- 返回: Promise
类型定义
interface Task {
id: number;
name: string;
status: string;
pri: number;
// ... 其他任务属性
}
interface Bug {
id: number;
title: string;
status: string;
severity: number;
// ... 其他Bug属性
}
interface BugResolution {
resolution: string; // 解决方案类型
resolvedBuild?: string; // 解决版本
duplicateBug?: number; // 重复Bug ID
comment?: string; // 备注
}
注意事项
- 确保提供正确的禅道系统URL和API版本
- 用户名和密码需要有相应的API访问权限
- 所有API调用都是异步的,需要使用async/await或Promise处理
- 错误处理建议使用try/catch进行捕获
开发环境
- Node.js >= 14.0.0
- TypeScript >= 4.0.0
贡献
欢迎提交Issue和Pull Request!
Stars
8Forks
1Last commit
4 months agoRepository age
4 monthsLicense
MIT
Auto-fetched from GitHub .
MCP servers similar to 禅道任务管理助手:

Stars
Forks
Last commit

Stars
Forks
Last commit

Stars
Forks
Last commit