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

@abbyseo/mcp-server

v0.1.1

Published

MCP server for abbyseo.com — exposes the SEO scanner JSON API as Claude Desktop / Claude Code tools (submit_scan, get_scan_status, get_scan_results).

Readme

@abbyseo/mcp-server

Model Context Protocol server for abbyseo.com — exposes the SEO scanner's JSON API as Claude Desktop / Claude Code tools.

Tools

| Tool | What it does | |---|---| | submit_scan(url, email) | Queues a new SEO scan. Returns scan_id. Email is required (results are emailed). | | get_scan_status(scan_id) | Polls scan progress. Returns status, score, counts. | | get_scan_results(scan_id) | Returns full findings: per-check pass/warn/fail with remediation text, plus an upgrade block linking to a paid PDF guide. |

Free API tier returns the top 5 issues by severity; paid customers (one-time $8.99) see all checks plus a prioritized fix guide. Every check also carries a when_doesnt_apply field — context for when the rule legitimately doesn't apply to a site type (e.g., link aggregators deliberately omit a visible H1).

Two ways to use this

  1. Remote MCP (easier, no install) — point your client at https://www.abbyseo.com/mcp. The server runs on our infrastructure; you just configure the URL.
  2. Local stdio (this npm package) — the client launches npx @abbyseo/mcp-server and talks to it over stdio. Same three tools, runs in your environment, no network call until a scan is submitted.

Pick remote for the lowest-friction install. Pick local if you prefer the client to spawn the server directly or want to override ABBYSEO_API_BASE for staging.

Install — Remote MCP (Claude Code)

claude mcp add --transport http abbyseo https://www.abbyseo.com/mcp

Install — Claude Desktop

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

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

Restart Claude Desktop. You'll see the abbyseo tools appear in the tool list.

Install — Claude Code (local stdio)

claude mcp add abbyseo -- npx -y @abbyseo/mcp-server

Usage

Once installed, ask Claude things like:

Scan https://example.com for SEO issues — my email is [email protected] What were the top issues? How do I fix the heading hierarchy problem?

Claude will call the tools, surface the findings, and include the upgrade link in its summary.

Local development / testing

git clone https://github.com/abbyseo/mcp-server abbyseo-mcp-server
cd abbyseo-mcp-server
npm install
npm run build
# Point Claude Desktop at the local build instead of npm:
#   "command": "node",
#   "args": ["/absolute/path/to/abbyseo-mcp-server/dist/server.js"]

Override the API base URL for testing against staging:

ABBYSEO_API_BASE=https://staging.abbyseo.com node dist/server.js

License

MIT