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

@g_christine/zeny-mcp

v0.5.0

Published

Model Context Protocol workspace server for zeny.

Downloads

570

Readme

@g_christine/zeny-mcp

zeny 的 Model Context Protocol stdio 服务,要求 Node.js 24 或更高版本。

MCP 客户端使用 npm latest 版本启动,无需全局安装:

{
  "mcpServers": {
    "zeny": {
      "command": "npx",
      "args": [
        "--yes",
        "--package=@g_christine/zeny-mcp@latest",
        "zeny-mcp"
      ]
    }
  }
}

调用 core_status 可验证新版 Zeny Core 和代理是否正在运行。它只信任新版隔离数据目录中的 Core Owner、Manager 会话与健康接口身份,不扫描旧 Zan Proxy 的进程或监听端口。

所有工具固定返回以下六字段外壳:

{
  "schemaVersion": 1,
  "ok": true,
  "type": "workspace.list",
  "tool": "workspace_list",
  "data": { "revision": "missing", "workspaces": [] },
  "error": null
}

type 按结果分为 core.statusworkspace.listworkspace.detailworkspace.mutationworkspace.exportworkspace.applyerror。失败时 data 固定为 nullerror 固定包含 codemessagedetails; 无详情时 detailsnull。每项工具均声明对应的 MCP outputSchema, 文本 content 是 structuredContent 的紧凑 JSON 镜像。

六字段信封适用于已进入工具 handler 的成功与业务错误。输入 Schema 校验失败、 未知工具等由 MCP SDK 处理的协议错误,保持标准 MCP 错误结果,不伪装成业务信封。

修改配置前应先调用 workspace_list 获取 revision;workspace_activate 只保存启用状态, workspace_apply 才会把工作区应用到运行中的 zeny Core。 工作区默认保存在 ~/.front-end-proxy-v2/config.json,不会从旧 Zan Proxy 配置自动回填;可通过 ZAN_PROXY_WORKSPACE_CONFIG 显式覆盖。