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

@qcqx/project-manage-mcp

v1.0.0

Published

qcqx-project-manage MCP Server

Readme

@qcqx/project-manage-mcp

qcqx-project-manage 的 MCP Server,通过 Model Context Protocol 将项目管理能力暴露给 AI Agent(Cursor、Claude Desktop 等)。

基于 @qcqx/project-manage-core 提供的核心逻辑,以 stdio 方式运行。

安装

npm install -g @qcqx/project-manage-mcp

或通过 npx 免安装使用:

npx @qcqx/project-manage-mcp

配置

Cursor

在项目或全局的 .cursor/mcp.json 中添加:

{
  "mcpServers": {
    "qcqx-project-manage": {
      "command": "npx",
      "args": ["-y", "@qcqx/project-manage-mcp"]
    }
  }
}

Claude Desktop

编辑 claude_desktop_config.json

{
  "mcpServers": {
    "qcqx-project-manage": {
      "command": "npx",
      "args": ["-y", "@qcqx/project-manage-mcp"]
    }
  }
}

Claude Code

claude mcp add qcqx-project-manage -- npx -y @qcqx/project-manage-mcp

Tools

search_projects

在已保存的项目列表中模糊搜索(按 title、description、path)。

| 参数 | 类型 | 必填 | 说明 | |------|------|------|------| | query | string | 是 | 搜索关键词 | | type | "project" | "group" | "all" | 否 | 筛选节点类型,默认 all |

scan_git_repos

扫描指定目录(或配置的默认目录)发现 Git 仓库。

| 参数 | 类型 | 必填 | 说明 | |------|------|------|------| | directories | string[] | 否 | 要扫描的目录列表,省略时使用配置中的 gitProjectScanFolders | | maxDepth | number | 否 | 最大递归深度,-1 为无限制 |

get_project_detail

获取项目详情(路径、Git 状态、remote URL 等)。

| 参数 | 类型 | 必填 | 说明 | |------|------|------|------| | id | string | 是 | 项目节点 ID |

add_project

将项目添加到项目列表。

| 参数 | 类型 | 必填 | 说明 | |------|------|------|------| | title | string | 是 | 项目名称 | | fsPath | string | 是 | 项目在文件系统上的绝对路径 | | parentId | string | 否 | 父节点 ID,省略则添加到根级 | | description | string | 否 | 项目描述 |

remove_project

从项目列表移除节点。

| 参数 | 类型 | 必填 | 说明 | |------|------|------|------| | id | string | 是 | 要移除的节点 ID |

add_group

在项目列表中创建一个分组。

| 参数 | 类型 | 必填 | 说明 | |------|------|------|------| | title | string | 是 | 分组名称 | | parentId | string | 否 | 父节点 ID,省略则添加到根级 |

update_project

更新项目列表中的节点信息。

| 参数 | 类型 | 必填 | 说明 | |------|------|------|------| | id | string | 是 | 节点 ID | | title | string | 否 | 新标题 | | description | string | 否 | 新描述 | | fsPath | string | 否 | 新路径 |

list_scan_folders

列出配置的 Git 项目扫描目录。无参数。

update_scan_folders

更新 Git 项目扫描目录配置。

| 参数 | 类型 | 必填 | 说明 | |------|------|------|------| | scanFolders | (string | { path, desc?, category? })[] | 否 | 扫描目录列表 | | ignoredFolders | string[] | 否 | 要忽略的文件夹名/glob 模式 | | scanNested | boolean | 否 | 是否扫描嵌套 Git 项目 | | maxDepth | number | 否 | 最大递归深度,-1 为无限制 |

Resources

| URI | 说明 | |-----|------| | projects://list | 当前项目列表(只读 JSON 快照) | | projects://config | 当前应用配置 |

构建

# 构建
pnpm build

# 类型检查
pnpm check-types

# 清理产物
pnpm clean

环境要求

  • Node.js >= 18

许可

MIT