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

kili-project-management-mcp

v0.1.0

Published

MCP stdio server for project management tools

Downloads

104

Readme

kili-project-management-mcp

基于 MCP 的 stdio 服务,提供项目管理相关工具。支持通过 npx 本地运行。

使用

# 本地直接运行
npx kili-project-management-mcp --api-token <token>

# 开启调试日志
npx kili-project-management-mcp --api-token <token> --debug

配置

  • API 地址固定:https://e.coding.net/open-api
  • 访问令牌:通过参数 --api-token <token>(或 --token <token>
  • 调试日志:参数 --debug(或 -d),日志写入当前工作目录的 mcp-debug.log
  • 示例文件:.env.exmxx(仅作参考)

MCP Server 配置示例

{
    "kili-project-management": {
        "type": "stdio",
        "command": "npx",
        "args": [
            "kili-project-management-mcp",
            "--api-token=f0",
            "--debug"
        ]
    }
}

工具

  • coding_describe_issue_list:事项列表查询(ProjectNameIssueType 等)
  • coding_describe_issue:事项详情查询(ProjectNameIssueCode
  • coding_create_issue:创建事项(ProjectNameTypeName
  • coding_upload_file:上传文件(FilePathProjectNameContentTypeFolderType=1FolderId=0 默认)
  • coding_attach_issue_file:上传附件并挂到事项(IssueCodeProjectNameFilePathContentType
  • coding_describe_project_issue_status_list:事项类型状态列表(ProjectNameIssueType
  • coding_modify_issue_status:修改事项状态(ProjectNameIssueCodeStatusId,可选 AssigneeIdDueDateProjectModuleIdComment
  • coding_describe_current_user:当前用户信息查询(无需参数)
  • coding_describe_issue_module_list:事项模块列表查询(ProjectName

开发

npm i
npm run dev

构建

npm run build

结构

  • src/index.ts 启动入口
  • src/server/ MCP server 初始化与 stdio transport
  • src/tools/ 工具注册与实现
  • src/types/ 共享类型