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

@a2a-compliance/mcp

v0.3.3

Published

Model Context Protocol (MCP) server for the A2A (Agent2Agent) protocol compliance test kit. Lets Claude Desktop, Cursor, Codex, and other MCP clients invoke run_compliance / validate_agent_card / list_checks / explain_check / ssrf_check_url as native tool

Readme

@a2a-compliance/mcp

Model Context Protocol server for the A2A (Agent2Agent) protocol compliance test kit. Lets Claude Desktop, Cursor, Codex, Aider, Cline, Windsurf, Continue, and any other MCP-capable client invoke run_compliance / validate_agent_card / list_checks / explain_check / ssrf_check_url as native tools — no REST, no API keys, no shell-out.

npm license

Part of a2a-compliance. For CLI use, install @a2a-compliance/cli instead.

Install

The server is published on npm and designed to be launched by an MCP client via npx:

# sanity check
npx @a2a-compliance/mcp
# ^ waits on stdio for an MCP client — Ctrl+C to exit

Configure your MCP client

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "a2a-compliance": {
      "command": "npx",
      "args": ["-y", "@a2a-compliance/mcp"]
    }
  }
}

Restart Claude Desktop. The tools appear in the tool picker ("⚒" icon) as run_compliance, validate_agent_card, list_checks, explain_check, ssrf_check_url.

Cursor

~/.cursor/mcp.json (global) or .cursor/mcp.json (per-project):

{
  "mcpServers": {
    "a2a-compliance": {
      "command": "npx",
      "args": ["-y", "@a2a-compliance/mcp"]
    }
  }
}

Codex / Cline / Windsurf / Continue

Same shape — invoke via npx @a2a-compliance/mcp with stdio transport. Any MCP client that supports the public spec will work.

Tools exposed

| Name | Input | What it does | |---|---|---| | run_compliance | { url, skipProtocol?, skipSecurity?, skipAuth? } | Full compliance run — agent card + JSON-RPC + method set + auth + security. Returns a ComplianceReport with per-check status and a compliance tier (NON_COMPLIANT / MANDATORY / RECOMMENDED / FULL_FEATURED). | | validate_agent_card | { url } | Card-only, faster. | | list_checks | {} | Returns the full check catalog: id, category, severity, title, description, optional specRef pointing back into the A2A / JSON-RPC spec. | | explain_check | { id } | Returns the catalog entry for one check id. | | ssrf_check_url | { url } | Ingress guard — refuses private-space resolutions. Usable by other MCP tools before they fetch user-supplied URLs. |

Example prompts

  • "Check whether https://agent.example.com is a compliant A2A agent and tell me what's wrong."
  • "List every A2A compliance check in the security category."
  • "Why does sec.ssrf exist? Explain it."
  • "Before you fetch this URL, SSRF-check it."

Security

  • stdio-only transport — no network listener, no auth surface.
  • Every outbound probe uses @a2a-compliance/core's hardened HTTP client: 10 s timeout, 2 MB body cap, per-redirect SSRF re-check, and DNS-rebinding pin (close-the-TOCTOU lookup through undici).
  • The ssrf_check_url tool is exposed specifically so an MCP host can sanitise URLs it received from a user before handing them to any fetching tool — including this one.

See also

License

MIT.