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

@hackspaces/ipeds-connect-mcp

v0.1.3

Published

Read-only MCP server for U.S. higher-education data (College Scorecard / IPEDS) with the full CIP 2020 taxonomy and CIP-to-SOC crosswalk bundled

Downloads

630

Readme

ipeds-connect-mcp

A read-only MCP server for U.S. higher-education data, backed by the U.S. Department of Education College Scorecard API (which carries IPEDS data). It bundles the full CIP 2020 taxonomy and the official CIP-to-SOC crosswalk, so you can discover programs and bridge them to occupations without any extra API.

  • Search all 2,143 CIP program codes by keyword or partial code (offline).
  • Map a program to the occupations it feeds (NCES CIP-to-SOC crosswalk).
  • Profile institutions, enrollment, and the competitive landscape for a program (live Scorecard data).

Install

npm install -g @hackspaces/ipeds-connect-mcp

Run with node (the same way the MCP gateway consumes it):

# SCORECARD_API_KEY is optional (falls back to DEMO_KEY)
SCORECARD_API_KEY=... \
  node "$(npm root -g)/@hackspaces/ipeds-connect-mcp/dist/index.js"
{
  "mcpServers": {
    "ipeds-connect": {
      "command": "node",
      "args": ["<entrypoint>"],
      "env": { "SCORECARD_API_KEY": "..." }
    }
  }
}

Tools

| Tool | Source | Purpose | | --- | --- | --- | | ipeds_search_programs | bundled CIP 2020 | Keyword/partial-code search over all 2,143 programs | | ipeds_program_occupations | bundled CIP-SOC | Occupations (SOC) a CIP program crosswalks to | | ipeds_get_institution | Scorecard | Institution profile (enrollment, tuition, outcomes) | | ipeds_get_enrollment_trend | Scorecard | Student-body composition for one institution | | ipeds_compare_programs | Scorecard | Schools offering a CIP program at a degree level | | ipeds_find_competitors | Scorecard | Largest schools in a program (optionally online-only) |

Data sources

  • Live: College Scorecard API (IPEDS). SCORECARD_API_KEY optional.
  • Bundled (static reference): CIP 2020 codes + titles and the CIP-to-SOC crosswalk, both generated from NCES's official CIP2020_SOC2018_Crosswalk. CIP is revised ~once a decade, so it ships with the package.

Environment

  • SCORECARD_API_KEY (optional; DEMO_KEY fallback).
  • IPEDS_MCP_ALLOW_PII=true to disable the defensive PII value-scrub.

Development

npm install && npm run typecheck && npm run build && npm test
npm run dev      # stdio, from source
npm run smoke    # live Scorecard call + bundled CIP checks

License

MIT