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

@rankgeo/mcp-server

v1.0.2

Published

Model Context Protocol server for the RankGeo GEO platform. Exposes 10 tools for AI agents to read workspace, audit, and suggestion data, and trigger ingestion, audits, and suggestion status changes.

Readme

@rankgeo/mcp-server

Model Context Protocol (MCP) server for the RankGeo GEO platform. Exposes 10 tools that let AI agents read workspace, audit, and suggestion data and trigger ingestion, audits, and suggestion status changes.

Install

npm install -g @rankgeo/mcp-server
# or
npx -y @rankgeo/mcp-server

Configure

Generate an API key in the RankGeo dashboard at /dashboard/settings, then add the server to your MCP client config:

{
  "mcpServers": {
    "rankgeo": {
      "command": "npx",
      "args": ["-y", "@rankgeo/mcp-server"],
      "env": {
        "RANKGEO_API_URL": "https://api.rankgeo.ai",
        "RANKGEO_API_KEY": "rgk_your_key_here"
      }
    }
  }
}

For local development, point RANKGEO_API_URL at http://localhost:4000 and run the backend with pnpm dev:backend.

Environment

| Variable | Required | Default | Description | | -------------------- | -------- | ----------------------- | ------------------------------------------------------------ | | RANKGEO_API_KEY | yes | — | Bearer token from the RankGeo dashboard. | | RANKGEO_API_URL | no | http://localhost:4000 | Base URL of the RankGeo backend that hosts /api/mcp/tools. |

Tools

Read-only:

  • list_workspaces — list workspaces owned by the authenticated account
  • get_workspace — fetch a single workspace by id
  • list_suggestions — list suggestions (filterable by status and category)
  • get_suggestion — fetch a single suggestion by id
  • get_scores — list all audit runs for a workspace
  • get_score_breakdown — get the latest completed audit with full breakdown

Side-effecting:

  • trigger_ingestion — fire-and-forget re-ingestion of the product site
  • trigger_audit — fire-and-forget re-measurement of GenAI visibility
  • apply_suggestion — mark a suggestion applied (schedules a ~24h re-audit)
  • dismiss_suggestion — mark a suggestion dismissed

Development

pnpm install
pnpm --filter @rankgeo/mcp-server build
pnpm --filter @rankgeo/mcp-server test

The package uses the modern MCP SDK (McpServer + registerTool + StdioServerTransport), Zod 4 .strict() schemas, and returns both content and structuredContent for cross-client compatibility.

License

UNLICENSED — proprietary to RankGeo.