ZenTao MCP Server

ZenTao MCP Server

Enables interaction with ZenTao project management system through RESTful API v1. Supports bug tracking, project/product management, and automated token authentication for seamless integration.

Category
Visit Server

README

ZenTao MCP Server

一个基于 MCP 的 ZenTao RESTful API v1 适配器,自动处理 token,提供通用调用工具和资源索引。

功能列表(支持的禅道能力)

  • Token 自动获取/缓存:自动登录获取 Token,支持强制刷新,所有请求自动带 Token 头。
  • 通用调用:直接调用禅道 RESTful v1 任意接口(GET/POST/PUT/DELETE/PATCH)。
  • 项目与产品:列出与当前账号相关的项目;按关键字搜索产品。
  • 缺陷处理:
    • 查询分配给我的缺陷(支持按产品、关键字、状态过滤,获取下一个待处理项)。
    • 查看缺陷详情(附带步骤中的图片链接提取)。
    • 统计缺陷数量(总数/活跃)。
    • 将缺陷标记为已解决(resolve,默认 resolution=fixed)。
  • 资源索引:zentao://endpoints(接口概览)、zentao://config(环境配置检查)、zentao://projects(我的项目)。

安装

方式一:快速使用(npm)

# 全局安装
npm install -g @makun111/zentao-mcp-server

安装后由 MCP 客户端通过 API/stdio 调用,无需手动启动。

方式二:下载源码本地安装

git clone git@github.com:Immmmmmortal1/zantao.git
cd zantao
npm install

用于本地开发/调试。如需环境文件,可将 .env.example 复制为 .env 并填写参数。需要手动验证时可运行 npm start

环境变量

  • ZENTAO_BASE_URL:禅道服务地址,形如 https://xxx.com
  • ZENTAO_ACCOUNT:登录账号
  • ZENTAO_PASSWORD:登录密码
  • ZENTAO_TOKEN:可选,已有 token;如果未提供会自动通过 /tokens 获取

在 zsh 中配置环境变量示例:

echo 'export ZENTAO_BASE_URL="https://example.com/zentao/"' >> ~/.zshrc
echo 'export ZENTAO_ACCOUNT="你的账号"' >> ~/.zshrc
echo 'export ZENTAO_PASSWORD="你的密码"' >> ~/.zshrc
source ~/.zshrc

MCP 客户端配置示例(OpenAI 等)

在 MCP 客户端的配置文件中添加以下片段即可通过 npx 直接运行本服务:

# Zentao MCP server (stdio, npm)
[mcp_servers.zentao_server]
type = "stdio"
command = "npx"
args = ["-y", "@makun111/zentao-mcp-server"]

提供的工具

  • get_token(forceRefresh?):调用 POST /api.php/v1/tokens 获取 token,默认缓存。
  • call(path, method?, query?, body?, forceTokenRefresh?):调用任意 RESTful 接口,自动注入 Token 头。path 可写 /projectsprojects/1

资源

  • zentao://endpoints:RESTful v1 主要接口概览。
  • zentao://config:当前环境变量是否已设置(不包含敏感值)。

使用示例

在任意支持 MCP 的客户端中调用对应工具:

  • 获取 token:{ "tool": "get_token" }
  • 列出部门:{ "tool": "call", "arguments": { "path": "/departments", "method": "GET" } }
  • 创建项目:{ "tool": "call", "arguments": { "path": "/projects", "method": "POST", "body": { "name": "Demo Project", "code": "DEMO" } } }
  • 查询分配给我的缺陷:{ "tool": "getMyBugs", "arguments": { "productId": 1, "status": "active" } }

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured