npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

zentao-dev-mcp

v1.0.1

Published

MCP server for Zentao project management - developer tools for tasks, bugs, stories and products

Readme

zentao-dev-mcp

面向开发者的禅道 MCP Server,在 Cursor IDE 中快速查询和操作禅道数据。

功能概览

提供 20 个 MCP 工具,覆盖任务、Bug、需求、产品的查询与管理:

任务管理 (7 个工具)

| 工具 | 说明 | |---|---| | get_my_tasks | 获取我的任务列表(支持按指派/创建/完成/待处理筛选) | | get_task_detail | 查看任务详情 | | create_task | 创建新任务 | | edit_task | 编辑任务 | | start_task | 开始任务(状态变更为进行中) | | finish_task | 完成任务 | | assign_task | 指派任务给他人 |

Bug 管理 (8 个工具)

| 工具 | 说明 | |---|---| | get_my_bugs | 获取我的 Bug 列表 | | search_bugs | 按产品搜索 Bug(支持状态/指派人/日期筛选) | | get_bug_detail | 查看 Bug 详情 | | create_bug | 创建新 Bug | | edit_bug | 编辑 Bug | | resolve_bug | 解决 Bug | | close_bug | 关闭 Bug | | activate_bug | 重新激活 Bug |

需求查询 (3 个工具)

| 工具 | 说明 | |---|---| | get_my_stories | 获取我负责的需求列表 | | get_story_detail | 查看需求详情(含关联任务) | | get_product_stories | 按产品查询需求列表 |

产品查询 (2 个工具)

| 工具 | 说明 | |---|---| | get_product_list | 获取所有可见产品列表 | | get_product_detail | 查看产品详情 |

安装

npm install
npm run build

环境变量

| 变量 | 说明 | 必填 | |---|---|---| | ZENTAO_BASE_URL | 禅道服务器地址(如 https://zentao.example.com) | 是 | | ZENTAO_CODE | 用户工号(认证 code) | 是 | | ZENTAO_KEY | API 密钥 | 是 |

Cursor MCP 配置

~/.cursor/mcp.json 中添加:

{
  "mcpServers": {
    "zentao-dev": {
      "command": "node",
      "args": ["/path/to/zentao-dev-mcp/dist/index.js"],
      "env": {
        "ZENTAO_BASE_URL": "https://zentao.example.com",
        "ZENTAO_CODE": "your-code",
        "ZENTAO_KEY": "your-api-key"
      }
    }
  }
}

或通过 npx 方式:

{
  "mcpServers": {
    "zentao-dev": {
      "command": "npx",
      "args": ["-y", "/path/to/zentao-dev-mcp"],
      "env": {
        "ZENTAO_BASE_URL": "https://zentao.example.com",
        "ZENTAO_CODE": "your-code",
        "ZENTAO_KEY": "your-api-key"
      }
    }
  }
}

技术栈

  • TypeScript + ESM
  • @modelcontextprotocol/sdk v1.x(McpServer 高级 API)
  • zod — 运行时参数验证
  • Node.js >= 18 — 使用内置 fetchcrypto