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

weavatrix-seo

v0.6.3

Published

Native Weavatrix SEO CLI and MCP host: Search Evidence Graph audits, plans, and retrieval for code-driven websites.

Readme

weavatrix-seo

npm crates.io MIT

Native Weavatrix SEO CLI and MCP host. One binary, two sockets.

Audit the site you shipped, understand the code that produced it, and build the search architecture you are missing.

This npm package is a zero-dependency Node launcher around prebuilt weavatrix-seo binaries for Windows, macOS, and Linux on x64 and arm64. Installation does not compile, download, or run lifecycle scripts. weavatrix-seo-mcp is the same native binary with mcp as the first argument.

Install

npm install -g weavatrix-seo
# or
npx -y weavatrix-seo audit --site https://example.com --json

Rust:

cargo install weavatrix-seo-cli --locked

30-second CLI

weavatrix-seo --version
weavatrix-seo audit --site https://example.com --json
weavatrix-seo audit --site https://example.com --html report.html
weavatrix-seo audit --site https://example.com --ci --baseline previous.json
weavatrix-seo inventory --site https://example.com --json
weavatrix-seo opportunities --site https://example.com --json
weavatrix-seo plan --site https://example.com --json
weavatrix-seo compare --site https://example.com --competitor https://competitor.example --json
weavatrix-seo query --site https://example.com --q "FROM urls WHERE inbound_links = 0 AND indexable = true LIMIT 20" --json
weavatrix-seo retrieve --site https://example.com --q "licensed electrician vancouver" --json
weavatrix-seo explain WVX-SEO-META-001:abcd1234 --site https://example.com --json
weavatrix-seo diff --base ./seo-history/a.json --head ./seo-history/b.json --json

| Command | What it does | |---|---| | audit | Crawl + findings by axis, severity, authority | | inventory | Measured URLs, routes, producers | | opportunities | Gaps to build, not current errors | | plan | Target search architecture + Refactor handoff | | compare | Owned site vs public competitor origins | | query | Bounded DSL over the last audit | | retrieve | Candidate pages (lexical, not an embedding API) | | explain | URL → route → symbol chain | | diff | Two snapshots, audit JSON files, or worktrees | | mcp | Same engine over stdio MCP |

Hybrid (live site vs the repo that should have built it):

weavatrix-seo audit --site https://example.com --repo . --json

Add MCP (same binary)

MCP is not a second package. Point the agent at weavatrix-seo mcp.

Claude Code

claude mcp add weavatrix-seo -- npx -y weavatrix-seo mcp --allow-root .

Codex

[mcp_servers.weavatrix-seo]
command = "npx"
args = ["-y", "weavatrix-seo", "mcp", "--allow-root", "."]

Cursor

{
  "mcpServers": {
    "weavatrix-seo": {
      "command": "npx",
      "args": ["-y", "weavatrix-seo", "mcp", "--allow-root", "."]
    }
  }
}

Paths a tool accepts stay inside --allow-root (cwd when omitted). MCP crawls are public-only. Missing evidence is unmeasured.

MCP tools (15)

| Tool | What the agent gets | |---|---| | seo_inventory | Measured URLs, routes, producers | | seo_audit | Findings by axis, severity, authority | | seo_opportunities | Construction gaps | | seo_plan | Architecture plan + read-only Refactor handoff | | seo_compare | Structural gaps vs public competitors | | seo_links | Directed internal-link recommendations (inferred) | | seo_vectors | Page vectors, lexical model wvx-seo-lexhash-v1 | | seo_diff | Snapshot / worktree delta | | seo_gate | CI verdict (--ci / --baseline) | | seo_explain | Evidence chain for one fingerprint | | seo_observations | Imported GSC / logs / AI citations | | seo_query | FROM urls\|findings\|… WHERE … LIMIT n | | seo_retrieve | Ranked candidate pages | | seo_similar | Pages similar to a URL | | seo_chunks | Chunks that best answer a query |

{ "name": "seo_audit", "arguments": { "site": "https://example.com", "max_pages": 80 } }
{ "name": "seo_query", "arguments": { "site": "https://example.com", "q": "FROM urls WHERE inbound_links = 0 AND indexable = true LIMIT 20" } }
{ "name": "seo_retrieve", "arguments": { "site": "https://example.com", "q": "iphone screen repair haifa" } }

What an agent can ask:

Which indexable URLs have zero internal inlinks?
Is this canonical target measured, or UNMEASURED because it was off-budget?
What source symbol emits the missing FAQPage.mainEntity?
Which competitor locales or schema types are we missing?

Why not another crawler

  • Code-aware. Next.js, Nuxt, and Astro families from source. A finding can name the helper that emitted the title.
  • Evidence-honest. Google rich-result ≠ schema.org vocabulary. Off-crawl canonicals are UNMEASURED. Mixed content is subresources, not navigation links.
  • Agent-native. Fifteen MCP tools are the CLI, not a wrapper around a report file.
  • Read-only. No page writes, no generated articles, no patches.
  • No model on the default path. Lexical vectors, no embedding API, no browser unless you import a WVQ snapshot.

Full engine contract, finding families, and crate map: github.com/Weavatrix/weavatrix-seo.

MIT. See LICENSE.