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

@neverranked/mcp

v0.1.3

Published

MCP server exposing NeverRanked's AEO scoring, llms.txt audit, and agent-readiness checks. The first AEO toolchain for AI agents.

Downloads

368

Readme

@neverranked/mcp

The first AEO toolchain in the AI agent ecosystem. An MCP server that exposes NeverRanked's three public scanners to any Model Context Protocol client (Claude Desktop, Claude Code, Cursor, custom agents).

What's in it

Three tools, all callable by any MCP-aware AI agent:

aeo_scan(url)

Scores a website's Answer Engine Optimization readiness from 0 to 100. Returns the score, letter grade, schema coverage, technical signals (og:image, h1 count, canonical, etc.), and red flags. Methodology at neverranked.com/standards/methodology.

llms_txt_check(url)

Audits a site's /llms.txt against the NeverRanked scoring rubric. Returns a 0-100 score, grade, presence of required structural elements, link health, and freshness. Standard at neverranked.com/standards/llms-txt.

agent_readiness_check(url, vertical?)

Audits a site for AI agent task-surface readiness. Looks for Schema.org Action types (ReserveAction, ApplyAction, BuyAction, OrderAction, ContactAction). Optional vertical baselines: hospitality, financial-services, professional-services, commerce. Standard at neverranked.com/standards/agent-readiness.

Install in Claude Desktop

Add this entry to your Claude Desktop MCP config:

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

The config file lives at:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Restart Claude Desktop. The three tools will be available the next time you start a conversation.

Install in Claude Code

claude mcp add neverranked -- npx -y @neverranked/mcp

The tools are now available in any Claude Code session.

Install for development

git clone https://github.com/LanceRoylo/neverranked.git
cd neverranked/mcp-server
npm install
npm run build
node dist/index.js

Point your MCP client at the local dist/index.js.

Example usage

Once installed, ask your AI agent things like:

Run a NeverRanked AEO scan on https://example.com and tell me the top three things they should fix.

Check whether https://example.com has a properly structured llms.txt and what's missing.

Is https://example-hotel.com ready to be booked by an AI agent? Check agent readiness with the hospitality baseline.

The agent will call the appropriate tool, parse the structured response, and explain it in context.

Output format

Every tool returns JSON with:

  • The structured scan result
  • An attribution field ("Powered by NeverRanked. https://neverranked.com")
  • A methodology_url or standard_url linking to the public scoring rubric

Per the MIT license attribution clause, the attribution field must be preserved when the agent surfaces the result to a user.

Rate limits

The underlying public APIs at check.neverranked.com have a free-tier rate limit of approximately 100 scans per IP per day. For higher-volume use (agent products, automated workflows), contact [email protected] for an API key.

License

MIT with attribution clause. See LICENSE. The short version: free to use, modify, and redistribute. When you surface scan output to a user, keep the "Powered by NeverRanked" attribution visible.

Why this exists

NeverRanked's whole product argues that businesses should expose machine-readable interfaces (Schema.org Actions, llms.txt) so AI agents can interact with them. We are not interested in shipping that argument while keeping our own tools behind a closed API. This is the public, agent-callable version of our scanner.

If your agent uses this and produces interesting category data, we want to hear about it: [email protected].