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

@superbuilders/graph-mcp

v0.5.0

Published

MCP stdio server for traversing and reviewing the Primer curriculum graph

Readme

@superbuilders/graph-mcp

An MCP server for exploring and reviewing the Primer curriculum graph. Once set up, your AI assistant can browse courses, units, and learning objectives, and raise reviews against a graph version.

What you need

Two values, which you'll get from the Primer team:

| Value | What it is | Looks like | | --- | --- | --- | | Graph host | The address of the Primer Graph API | https://graph.example.com | | Publishable key | Your access key | starts with pk_ |

That's it — no install step, no build, no account login. The server runs on demand.

Setup

You add the server to your AI assistant's config file. Pick your app below, paste the block in, and fill in your two values.

Claude Desktop

  1. Open Claude Desktop → SettingsDeveloperEdit Config.
  2. Add graph-mcp to the mcpServers section:
{
  "mcpServers": {
    "graph-mcp": {
      "command": "npx",
      "args": ["-y", "@superbuilders/graph-mcp"],
      "env": {
        "PRIMER_GRAPH_HOST": "https://graph.example.com",
        "PRIMER_PUBLISHABLE_KEY": "pk_your_key_here"
      }
    }
  }
}
  1. Save the file and restart Claude Desktop.

Claude Code

Run this in your terminal, with your two values filled in:

claude mcp add graph-mcp \
  --env PRIMER_GRAPH_HOST=https://graph.example.com \
  --env PRIMER_PUBLISHABLE_KEY=pk_your_key_here \
  -- npx -y @superbuilders/graph-mcp

Checking it works

After restarting, ask your assistant something like "List the available Primer courses." If it returns a list of courses, you're set.

Troubleshooting

  • Nothing happens / server won't start — Double-check both values are filled in. The publishable key must start with pk_, and the host must be a full URL beginning with https://.
  • Changes not taking effect — Fully quit and reopen the app after editing the config.

What it can do

Once connected, the assistant can:

  • List and look up courses and their units
  • View a course at a specific grade level
  • Read a single learning objective's details
  • Trace what comes before and after an objective in the curriculum
  • List the reviews on a curriculum-graph version, create a review against one or more objectives, and propagate a version's reviews forward onto a successor version

Browsing is read-only; the review tools (create_review, propagate_reviews) write, and only ever add reviews — they never edit the graph itself.