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

@erold90/agentready

v1.0.0

Published

Scan any website for AI Agent Readiness — WebMCP, A2A, MCP Discovery, OpenAPI, agents.json, llms.txt

Downloads

11

Readme

agentready

Scan any website for AI Agent Readiness from the terminal.

Checks WebMCP forms, JavaScript tools, and 5 AI discovery protocols (A2A Agent Cards, MCP Discovery, agents.json, OpenAPI, llms.txt).

Zero dependencies. Node 18+.

Install & Use

npx agentready https://example.com

Flags

agentready <url>              Full scan with colored output
agentready <url> --json       Raw JSON output (for CI/CD)
agentready <url> --protocols  Only check discovery protocols
agentready --help             Show help

Example Output

  ⚡ AgentReady Scanner v1.0.0
  Scanning https://stripe.com...

  Score: 36/100 ███████░░░░░░░░░░░░░
  HTTPS: ✓ Yes

  Page Structure
    Title:            ✓
    Meta Description: ✓
    Open Graph:       ✓
    JSON-LD:          ✓
    Semantic HTML:    ✓
    ARIA:             ✓

  WebMCP
    Forms:         0
    WebMCP-ready:  0
    JS tools:      0

  AI Discovery Protocols
    ✗ A2A Agent Card
    ✗ MCP Discovery
    ✗ agents.json
    ✗ OpenAPI
    ✓ llms.txt — Stripe

    1/5 protocols detected

  Verdict: Invisible to AI Agents

Programmatic API

const { scan } = require('agentready');

const result = await scan('https://example.com');
console.log(result.score);        // 0-100
console.log(result.protocols);     // A2A, MCP, OpenAPI, agents.json, llms.txt
console.log(result.forms.total);   // number of forms

What it checks

| Check | Description | |---|---| | WebMCP Forms | <form> elements with toolname, tooldescription, toolparamdescription | | JS Tools | navigator.modelContext.registerTool() calls | | A2A Agent Card | /.well-known/agent.json (Google A2A protocol) | | MCP Discovery | /.well-known/mcp.json (Model Context Protocol) | | agents.json | /.well-known/agents.json (multi-agent directory) | | OpenAPI | /openapi.json, /swagger.json, etc. | | llms.txt | /llms.txt (LLM-readable site info) | | Page Structure | Title, meta, OG tags, JSON-LD, semantic HTML, ARIA |

Links

License

BSL-1.1 — Free for non-commercial use.