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

mcp-server-agents-md

v0.0.1

Published

A unified MCP server for managing agent definition Markdown files (rules, workflows, subagents, claude.md, cursorrule, windsurfrule etc). Write once, use everywhere.

Readme

MCP Server AGENTS.md

npm Version npm License

用于管理代理定义 Markdown 文件(规则、工作流、子代理、claude.md、cursorrule、windsurfrule 等)的统一 MCP 服务器。一处编写,处处可用。

[!NOTE] AGENTS.md 由 OpenAI 发布。

概述

mcp-server-agents-md 是一个轻量级 MCP 服务器,它将你所有以 Markdown 编写的代理定义文件集中管理。它让你可以在 Claude、Cursor、Windsurf 等不同的代码代理平台之间,轻松共享与复用规则、工作流、子代理,以及其他代理规范。

  • 通过 MCP 提供基于 Markdown 的代理定义
  • 轻松集成到任何兼容 MCP 的代理环境

特性

[!TIP] 为了帮助 LLM 更快识别工具调用命令,我们设计了一个触发命令(cc:, carbon copy to agent),类似于其其它产品中的 /@。例如,要触发生成 git 提交信息的代理工作流,你可以输入 cc:commit。可以存在多个触发命令,定义在每个代理的 markdown 文件frontMatter.trigger 字段中。

代理(工作流/规则):

代理、工作流、规则来源:

使用方法

在 Claude、VSCode、Cursor、Windsurf、Cline、Cherry Studio、Chatbox 等 AI 客户端中使用时,添加以下 MCP 服务器配置。

在 macOS 上:

{
  "mcpServers": {
    "Agents": {
      "command": "npx",
      "args": [
        "--registry=https://registry.npmjs.org/",
        "-y",
        "mcp-server-agents-md@latest"
      ]
    }
  }
}

在 Windows 上:

{
  "mcpServers": {
    "Agents": {
      "command": "cmd",
      "args": [
        "/c",
        "npx",
        "--registry=https://registry.npmjs.org/",
        "-y",
        "mcp-server-agents-md@latest"
      ]
    }
  }
}

接下来,你需要在客户端中选择支持工具调用(Tools Call/Function Call)的 AI 模型,并输入简单的提示,例如:

  • git commit - 自然语言请求
  • 调用工具生成提交信息 - 显式工具请求
  • cc:commit - 触发命令,推荐
  • cc:fast-commit - 触发命令,推荐

开发

安装依赖:

npm install

构建服务器:

npm run build

启动 MCP 服务器:

npm run start

发布

版本发布使用 standard-version 工具。

npm run release
# 或以预发布版本发布
npm run release -- --prerelease alpha

许可证

MIT