ZenTao MCP Server
The ZenTao MCP Server provides an MCP interface to interact with a ZenTao (禅道) project management instance, enabling bug and product management through the following tools:
initZentao: Authenticate with a ZenTao instance using a base URL, account, and password or token.getProducts: Retrieve a list of all products from ZenTao.getMyBugs: Fetch bugs assigned to the current user, filterable by status (active,resolved,closed,all) and optionally by product ID.getBugDetail: Get detailed information about a specific bug by its ID.resolveBug: Mark a bug as resolved with a resolution type (fixed,notrepro,duplicate,bydesign,willnotfix,tostory,external), optional comments, and duplicate bug references.activateBug: Reopen a resolved or closed bug, with options to reassign it, specify an opened build, and add a comment.healthCheck: Verify server availability and current session status.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ZenTao MCP Servershow me my active bugs for product ID 123"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ZenTao MCP Server (API V1.0)
A ZenTao MCP server based on TypeScript + Node.js + @modelcontextprotocol/sdk, supporting:
Login initialization (
initZentao)View products (
getProducts)View my bugs (
getMyBugs)View bug details (
getBugDetail)Resolve bugs (
resolveBug)Activate bugs (
activateBug, reopen)
1. Environment Preparation
npm install
cp .env.example .envPlease configure the ZenTao URL and authentication information in .env (it is recommended to pass the account and password at runtime via initZentao rather than storing plain text in files).
Related MCP server: ZenTao MCP Server
2. Running from npm / npx (Recommended for other machines)
npm package name: @wudidada/zentao-mcp-server (scoped package; executable command zentao-mcp-server).
Requirements: Node.js >= 20. For Linux/macOS, it is recommended to install the system curl (the default HTTP backend is curl).
2.1 Command Line Trial
npx -y @wudidada/zentao-mcp-serverHTTP mode example:
MCP_TRANSPORT=http npx -y @wudidada/zentao-mcp-server2.2 Cursor mcp.json (stdio + environment variables)
Configure in .cursor/mcp.json in the project or user directory, for example:
{
"mcpServers": {
"zentao": {
"command": "npx",
"args": ["-y", "@wudidada/zentao-mcp-server"],
"env": {
"ZENTAO_BASE_URL": "http://your-host/zentao/api.php/v1",
"ZENTAO_ACCOUNT": "your_account",
"ZENTAO_PASSWORD": "your_password",
"ZENTAO_HTTP_BACKEND": "curl",
"LOG_LEVEL": "info"
}
}
}
}Please fully restart Cursor after modifying the configuration. You can also change the package name in args to a fixed version, such as @wudidada/zentao-mcp-server@1.0.1.
2.3 Maintainer: Publishing to npm
npm run build
npm test
npm publish --access publicBefore the first release, you need to npm login and ensure the version in package.json is not already taken.
Source repository: https://github.com/wudidada/zentao-mcp-server
3. Startup Methods
stdio (Preferred for local IDEs)
npm run start:stdioHTTP/SSE (Remote Access)
npm run start:httpDefault port 3000, health check:
curl http://localhost:3000/healthz4. Build and Test
npm run build
npm test5. MCP Tool Parameter Description
initZentao
baseUrl?: stringaccount: stringpassword?: stringtoken?: string
Choose either
passwordortoken.
getMyBugs
status?: "active" | "resolved" | "closed" | "all"(defaultactive)productId?: number
getBugDetail
bugId: number
activateBug
bugId: numberassignedTo?: string(assigned to, account)openedBuild?: string | string[](affected build, documentation says array; defaults to["trunk"]if not provided)comment?: string
resolveBug
bugId: numberresolution.resolution: "fixed" | "notrepro" | "duplicate" | "bydesign" | "willnotfix" | "tostory" | "external"resolution.resolvedBuild?: string(When the resolution isfixed, the server fixedly submitstrunk, ignoring this field to avoid display anomalies on some ZenTao web interfaces)resolution.duplicateBug?: number(Required whenresolution=duplicate)resolution.comment?: string
6. Security and Operations Baseline
Logs are masked for
password/token/authorizationby defaultDefault request timeout is
10sQuery interfaces (GET) support exponential backoff retries
HTTP mode provides
/healthzhealth checkIf
ZENTAO_BASE_URL+ZENTAO_ACCOUNT+ (ZENTAO_PASSWORDorZENTAO_TOKEN) are configured, the process will automatically log in upon startup, no need to callinitZentaoevery timeZENTAO_HTTP_BACKEND:axiosuses Node's built-in HTTP;curlcalls the systemcurl. On non-Windows systems,curlis the default to avoid issues where some ZenTao instances do not respond for a long time to "Node client +Tokenheader + GET"
6.1 Environment Variables Overview
Variable | Description |
| ZenTao API V1 root address, e.g., |
| For automatic login (choose either password or token) |
|
|
7. Project Structure
src/
adapters/ # 禅道 API V1.0 适配层
schemas/ # zod 参数校验
server/ # stdio/http 双入口
services/ # 领域服务
tools/ # MCP 工具实现8. Notes
The current implementation is encapsulated according to common ZenTao API V1.0 REST paths (
/tokens,/bugs,/products).Resolve Bug: The official v1 interface is
POST /bugs/{id}/resolve(not PUT). If PUT is used by mistake, it may result in an HTTP success while the ZenTao status is not actually updated.If your ZenTao instance path or authentication fields differ, you can adapt them in
src/adapters/zentaoApiV1.ts.
Available Tools
7 toolsactivateBugB
激活(重新打开)Bug,对应禅道 API v1:POST /bugs/{id}/active。适用于已解决/已关闭后重新激活。
| Name | Required | Description | Default |
|---|---|---|---|
| bugId | Yes | ||
| assignedTo | No | ||
| openedBuild | No | ||
| comment | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. While it mentions the state transition (reactivating resolved/closed bugs), it doesn't disclose permission requirements, whether this action is reversible, rate limits, or what happens to bug history. For a mutation tool with zero annotation coverage, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with just two sentences that directly convey the purpose and usage context. Every word earns its place, and the information is front-loaded with no wasted text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with 4 parameters, 0% schema coverage, no annotations, and no output schema, the description is incomplete. It covers the basic purpose and context but lacks crucial information about parameters, behavioral details, permissions, and expected outcomes that an agent needs to use this tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage and 4 parameters (only 1 required), the description provides no information about any parameters. It doesn't explain what 'bugId', 'assignedTo', 'openedBuild', or 'comment' mean or how they affect the reactivation. The description fails to compensate for the complete lack of schema documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('activate/reopen') and resource ('Bug'), and specifies it's for bugs that are already resolved/closed. However, it doesn't explicitly differentiate from sibling tools like 'resolveBug' beyond mentioning the state transition direction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context about when to use this tool ('适用于已解决/已关闭后重新激活' - applicable after resolution/closure for reactivation), which implicitly distinguishes it from creation or initial resolution tools. It doesn't explicitly name alternatives or provide exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getBugDetailBRead-only
查看单个 bug 详情。
| Name | Required | Description | Default |
|---|---|---|---|
| bugId | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, indicating a safe read operation. The description adds minimal behavioral context beyond this, as '查看' implies reading, but it doesn't disclose additional traits like error handling, rate limits, or authentication needs. With annotations covering the safety profile, a baseline 3 is appropriate for the limited added value.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Chinese that directly states the purpose without any wasted words. It's appropriately sized and front-loaded, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (1 parameter, no output schema) and annotations covering read-only safety, the description is minimally adequate. However, it lacks details on output format, error cases, or how it differs from siblings, leaving gaps in completeness for effective agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 1 parameter with 0% description coverage, so the description carries the burden. It implies the tool retrieves details for a single bug, which adds meaning by suggesting 'bugId' identifies the bug. However, it doesn't specify format or constraints beyond what the schema provides (e.g., numeric range), so it's not a full 5.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('查看' meaning 'view') and resource ('单个 bug 详情' meaning 'single bug detail'), making the purpose evident. However, it doesn't explicitly differentiate from sibling tools like 'getMyBugs' or 'resolveBug', which might also involve bug details, so it's not a perfect 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'getMyBugs' (which likely lists multiple bugs) or 'resolveBug' (which might include detail viewing). There's no mention of prerequisites, context, or exclusions, leaving usage ambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getMyBugsBRead-only
按状态与产品筛选我的 bug 列表。
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | active | |
| productId | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations indicate readOnlyHint=true, which the description doesn't contradict. The description adds context about filtering by status and product, which is useful beyond the annotations. However, it doesn't disclose other behavioral traits like pagination, rate limits, or authentication needs, leaving some gaps in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Chinese: '按状态与产品筛选我的 bug 列表.' It is front-loaded with the core purpose and contains no unnecessary words, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 2 parameters, no output schema, and annotations only cover read-only status, the description is minimally adequate. It explains the filtering purpose but lacks details on return values, error handling, or deeper usage context. For a simple read operation, this is acceptable but leaves room for improvement in completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description mentions filtering by status and product, which aligns with the two parameters in the schema. However, schema description coverage is 0%, so the schema provides no descriptions. The description compensates by naming the parameters but doesn't add detailed semantics like format or constraints beyond what's implied. This meets the baseline for adequate but incomplete coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '按状态与产品筛选我的 bug 列表' (Filter my bug list by status and product). It specifies the verb (filter), resource (my bug list), and filtering criteria (status and product). However, it doesn't explicitly distinguish itself from sibling tools like 'getBugDetail' or 'getProducts', which is why it doesn't achieve a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to use 'getMyBugs' over 'getBugDetail' (for specific bug details) or 'getProducts' (for product listings), nor does it specify any prerequisites or exclusions. The usage context is implied but not explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getProductsBRead-only
获取禅道产品列表。
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations indicate readOnlyHint=true, which the description doesn't contradict (it implies a read operation). However, the description adds no behavioral context beyond this, such as pagination, rate limits, or authentication needs. With annotations covering safety, it meets the baseline but lacks extra value.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Chinese that directly states the tool's purpose without any fluff or redundancy. It's appropriately sized and front-loaded, making it easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool with no parameters and annotations indicating safety, the description is minimally adequate. However, it lacks output details (no output schema) and doesn't address sibling differentiation or usage context, leaving gaps in completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description doesn't add param info, but this is acceptable given the empty schema, warranting a baseline score above minimum.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description '获取禅道产品列表' (Get ZenTao product list) clearly states the verb ('get') and resource ('product list'), making the purpose understandable. However, it doesn't differentiate from sibling tools like 'getBugDetail' or 'getMyBugs' beyond the resource type, and the title is null which slightly reduces clarity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing initialization via 'initZentao'), specific contexts, or exclusions, leaving the agent to infer usage from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
healthCheckBRead-only
检查当前会话与服务可用性。
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds minimal behavioral context beyond the readOnlyHint annotation. It implies a diagnostic operation but doesn't specify what 'availability' means, response format, or any rate limits. With annotations covering safety, this earns a baseline score for adding some purpose context without contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any wasted words. It's appropriately sized for a simple, parameterless tool and is front-loaded with clear intent.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, read-only annotation), the description is minimally adequate but lacks output information. Without an output schema, it should ideally hint at what the health check returns, leaving some contextual gaps for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0 parameters and 100% schema description coverage, the baseline is 4 as the schema fully documents the empty input. The description doesn't need to compensate for any parameter gaps, and it appropriately doesn't mention parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose as checking session and service availability ('检查当前会话与服务可用性'), which is a specific verb+resource combination. However, it doesn't differentiate from sibling tools like 'getProducts' or 'initZentao' that might also provide system status information, preventing a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. There are no explicit instructions about when/when-not to use it, nor references to sibling tools for comparison, leaving the agent without contextual usage information.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
initZentaoC
初始化禅道连接并登录(支持 password 或 token)。
| Name | Required | Description | Default |
|---|---|---|---|
| baseUrl | No | ||
| account | No | ||
| password | No | ||
| token | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool initializes a connection and logs in, implying it's a setup/mutation operation that likely requires authentication. However, it doesn't disclose critical behaviors such as whether this creates a persistent session, what happens on failure, rate limits, or security implications. For a tool with 4 parameters and no annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded in a single sentence: '初始化禅道连接并登录(支持 password 或 token)。' It efficiently conveys the core purpose and authentication options without unnecessary details. However, it could be slightly more structured by explicitly mentioning parameters or usage context, but it's still highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (4 parameters, no annotations, no output schema), the description is incomplete. It covers the basic purpose and authentication methods but lacks details on parameter meanings, behavioral traits, error handling, and output expectations. For a connection/login tool with multiple inputs, this leaves too many gaps for effective agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 0%, meaning none of the 4 parameters have descriptions in the schema. The description only adds that the tool supports 'password or token' authentication, which partially explains the 'password' and 'token' parameters but doesn't cover 'baseUrl' or 'account'. It fails to compensate for the low coverage, leaving most parameters undocumented in both schema and description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '初始化禅道连接并登录' (initialize ZenTao connection and login). It specifies the verb (initialize/connect and login) and resource (ZenTao), making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'healthCheck' which might also involve connection establishment, so it doesn't reach the highest score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides minimal usage guidance: it mentions that the tool supports password or token authentication, which hints at when to use it (for initial connection setup). However, it doesn't specify when to use this tool versus alternatives (e.g., if other tools implicitly handle connection), nor does it outline prerequisites or exclusions. This lack of explicit context keeps the score low.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
resolveBugC
提交 Bug 解决动作(fixed/notrepro/duplicate/...)。
| Name | Required | Description | Default |
|---|---|---|---|
| bugId | Yes | ||
| resolution | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It implies a write operation ('提交' meaning submit/resolve), suggesting mutation, but doesn't state whether this requires specific permissions, if changes are reversible, what happens on success/failure, or any rate limits. For a mutation tool with zero annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Chinese that conveys the core purpose with examples. It's front-loaded and wastes no words, though it could be slightly more structured (e.g., by explicitly stating it's for updating bug status).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (mutation tool with nested parameters, no annotations, no output schema), the description is incomplete. It lacks details on behavioral traits, full parameter meanings, and usage context. For a tool that modifies bug states, this leaves critical gaps for an AI agent to operate effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for undocumented parameters. It mentions resolution types like 'fixed/notrepro/duplicate/...', which partially explains the 'resolution' parameter's enum values, but doesn't cover 'bugId', 'resolvedBuild', 'duplicateBug', or 'comment'. With 2 parameters (including a nested object) and low coverage, the description adds minimal value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('提交 Bug 解决动作') and specifies the resource (Bug resolution), with examples of resolution types like 'fixed/notrepro/duplicate/...' that help clarify what the tool does. However, it doesn't explicitly distinguish this from sibling tools like 'activateBug' or 'getBugDetail', which would require mentioning it's for finalizing bug status rather than viewing or activating bugs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an existing bug ID), exclusions, or comparisons to siblings like 'activateBug' (which might change bug state differently) or 'getBugDetail' (which is read-only). This leaves the agent without context for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
7 tool updates
v1.0.0- First observed
activateBug - First observed
getBugDetail - First observed
getMyBugs - First observed
getProducts - First observed
healthCheck - First observed
initZentao - First observed
resolveBug
TDQS
Scored across 7 tools
Each tool has a clearly distinct purpose with no ambiguity. activateBug, resolveBug, getBugDetail, and getMyBugs handle different bug lifecycle stages and views, while getProducts, healthCheck, and initZentao cover separate administrative and setup functions. The descriptions make it easy to distinguish between tools like activateBug (reopen) and resolveBug (close with resolution).
The naming follows a mostly consistent verb_noun pattern with minor deviations. Tools like activateBug, getBugDetail, getMyBugs, getProducts, and resolveBug use clear action-object naming. However, healthCheck and initZentao deviate slightly by using compound nouns without verbs, though they remain readable and intuitive.
With 7 tools, this server is well-scoped for bug tracking and system management in ZenTao. Each tool earns its place by covering essential operations: bug lifecycle (activate, resolve, view), product listing, and system setup/health. The count is neither too sparse nor bloated, fitting the domain appropriately.
The tool set provides strong coverage for bug management with create, read, update (activate/resolve), and delete implied through resolution. Minor gaps exist, such as no explicit tool for creating bugs or managing other entities like tasks or users, but agents can work around this with the available tools for core workflows.
Maintenance
Related MCP Connectors
Task management for people and AI agents, with scoped OAuth access to issues, projects, and docs.
Task management for people and AI agents, with scoped OAuth access to issues, projects, and docs.
Manage Loom projects, tasks, bugs, defects, clients and phases from AI assistants
Track stories, organize sprints, and manage project workflows across your team
Related MCP Servers
- AlicenseAqualityNot gradedmaintenanceEnables direct integration with Zentao bug tracking systems through Cursor. Supports authentication, bug retrieval, searching, and listing operations for comprehensive bug management through natural language.57 npm-
- FlicenseNot gradedqualityFmaintenanceEnables LLMs to interact with ZenTao project management system, supporting project and task management operations including creating, querying, and updating projects and tasks through natural language.5-
- FlicenseBqualityCmaintenanceEnables interaction with ZenTao project management system through RESTful API v1. Supports bug tracking, project/product management, and automated token authentication for seamless integration.1011 npm1-
- FlicenseAqualityBmaintenanceEnables interaction with ZenTao project management system through RESTful APIs. Supports listing products, managing bugs, viewing statistics, and filtering personal bug assignments through natural language.436 npm15-