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

@verityscore/mcp-server

v1.0.0

Published

MCP server for Verity Score — GEO readiness audit for Shopify stores. 5 read-only tools: get_geo_score, check_ai_readiness, get_recommendations, explain_topic, get_vertical_info.

Readme

@verityscore/mcp-server

MCP (Model Context Protocol) server for Verity Score — the Shopify-first GEO audit platform.

5 Tools

| Tool | Description | |------|-------------| | get_geo_score | GEO readiness score for a Shopify store (8 dimensions, top findings, report link) | | check_ai_readiness | Real-time check of 5 AI discovery files (robots.txt, llms.txt, ai.txt, agent-card.json, sitemap.xml) | | get_recommendations | Top 3 priority fixes with estimated revenue impact | | explain_topic | Expert guides on 19 GEO & AI commerce topics | | get_vertical_info | Checklists & benchmarks for 15 e-commerce verticals |

Quick Start

Use the hosted server (recommended)

Add to your Claude Desktop or MCP client config:

{
  "mcpServers": {
    "verity-score": {
      "url": "https://mcp.verityscore.io/mcp"
    }
  }
}

Run locally

npx @verityscore/mcp-server

The server starts on http://localhost:3100/mcp.

Test with curl

# List all tools
curl -X POST http://localhost:3100/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","method":"tools/list","id":1}'

# Check AI readiness of any site
curl -X POST http://localhost:3100/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"check_ai_readiness","arguments":{"domain":"mybrand.com"}},"id":2}'

Architecture

  • Transport: Streamable HTTP (stateless)
  • Auth: None (rate-limited to 10 req/min/IP)
  • Protocol: MCP v2025-03-26
  • SDK: @modelcontextprotocol/sdk v1.x

Tools Detail

get_geo_score

Returns the GEO audit score for a Shopify store. If the store has been audited, returns scores across 8 dimensions + top 5 issues. If not yet audited, queues it for analysis within 72 hours.

Input:  { "domain": "mybrand.com" }
Output: { "status": "audited", "scores": [...], "topIssues": [...], "reportUrl": "..." }

check_ai_readiness

Real-time check of 5 AI discovery files. No database needed — fetches files directly from the target domain.

Input:  { "domain": "mybrand.com" }
Output: { "score": 3, "maxScore": 5, "checks": [...], "recommendation": "..." }

get_recommendations

Returns top 3 actionable fixes sorted by revenue impact.

Input:  { "domain": "mybrand.com" }
Output: { "totalIssues": 42, "topRecommendations": [{ "priority": 1, "title": "...", "fix": "..." }] }

explain_topic

Expert knowledge base covering 19 GEO topics. Fuzzy-matches by slug, tag, or title.

Input:  { "topic": "schema.org" }
Output: { "title": "Schema.org Product: Why and How", "keyPoints": [...], "readMore": {...} }

get_vertical_info

Checklists and benchmarks for 15 e-commerce verticals. Without argument, lists all verticals.

Input:  { "vertical": "beauty" }
Output: { "checklist": { "requiredContent": [...], "expectedTrust": [...] }, "benchmarks": {...} }

Links

  • Hosted MCP: https://mcp.verityscore.io/mcp
  • Website: https://verityscore.io
  • Free Audit: https://verityscore.io/fr/
  • Knowledge Base: https://verityscore.io/en/kb/
  • Agent Card: https://verityscore.io/.well-known/agent-card.json

License

MIT