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

@agent_press/mcp-server

v1.0.0

Published

MCP server that exposes any agents.txt file as queryable tools and resources. Plug into Claude Code, Cursor, Devin, and any other MCP-speaking agent.

Readme

@agent_press/mcp-server

Model Context Protocol (MCP) server that exposes agents.txt as queryable tools and resources for any MCP-speaking agent: Claude Code, Cursor, Devin, Aider, Continue, Replit Agent, etc.

Why

agents.txt declares what an agent may do on a given repo or site. With this MCP server installed, an agent can ask, in real time:

"Before I open this PR, fetch the repo's agents.txt and tell me if merge_to_main is allowed."

…and get a structured, deterministic answer.

Install

npm install -g @agent_press/mcp-server

Wire into Claude Code

Edit ~/.claude/mcp_settings.json:

{
  "mcpServers": {
    "agentpress": {
      "command": "npx",
      "args": ["-y", "@agent_press/mcp-server"]
    }
  }
}

Restart Claude Code. The four agents_txt_* tools and two resources become available.

Wire into Cursor

Edit ~/.cursor/mcp.json (or via Settings → MCP):

{
  "mcpServers": {
    "agentpress": {
      "command": "npx",
      "args": ["-y", "@agent_press/mcp-server"]
    }
  }
}

Tools surfaced

| Tool | Description | |---|---| | agents_txt_fetch(url) | Fetch + parse an agents.txt file from a URL. Returns the typed contract. | | agents_txt_check_action(url, action) | Decide if an action is allow / deny / requires_approval / unknown. | | agents_txt_validate(text) | Validate raw agents.txt content against the v1.0 spec. | | agents_txt_summarize(url) | One-paragraph human summary of a contract. |

Resources surfaced

| URI | Description | |---|---| | agentstxt://spec | The full v1.0 specification (markdown). | | agentstxt://example | A canonical example agents.txt with sensible defaults. |

Example interaction

User: Run `gh repo clone someorg/somerepo` and start working on issue #42.
Agent: [calls agents_txt_fetch("https://github.com/someorg/somerepo/raw/main/agents.txt")]
       → contract requires PR label "agent-authored", prohibits merge_to_main,
         and requires human approval for changes_touching=payments/**.
       I'll branch, label the PR, and skip touching payments/.

Privacy

  • Stdio-only. No network telemetry from the server itself.
  • agents_txt_fetch and agents_txt_summarize make outbound HTTPS requests to the URLs you (or the calling agent) pass.
  • No data is persisted on disk.

Development

cd packages/mcp-server
npm install
npm run build
npm start  # speaks MCP over stdio; pipe to an MCP host

License

MIT.