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

academyinfo-mcp

v0.1.1

Published

`academyinfo-mcp` is an independent, read-only MCP server for factual queries and side-by-side comparison of Korean university disclosure indicators. It uses a bundled local snapshot: no API key and no runtime network connection are required.

Downloads

361

Readme

academyinfo-mcp

academyinfo-mcp is an independent, read-only MCP server for factual queries and side-by-side comparison of Korean university disclosure indicators. It uses a bundled local snapshot: no API key and no runtime network connection are required.

This project is not affiliated with, endorsed by, approved by, sponsored by, or maintained by the Ministry of Education, KCUE, KEDI, data.go.kr, academyinfo.go.kr, or any university.

Quickstart

academyinfo-mcp runs with no install, no API key, and no login. It reads a bundled snapshot of Korean university disclosure indicators (대학알리미, KOGL Type 1) and answers factual queries and side-by-side comparisons from your AI assistant.

Claude Desktop

Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/), then restart Claude Desktop:

{
  "mcpServers": {
    "academyinfo": {
      "command": "npx",
      "args": ["-y", "academyinfo-mcp"]
    }
  }
}

Cursor

Add the same command/args shape to ~/.cursor/mcp.json (or a project .cursor/mcp.json), then reload the MCP server list.

Any MCP stdio client

npx -y academyinfo-mcp

The server speaks MCP over stdio (JSON-RPC on stdout, diagnostics on stderr).

Try it

Ask your assistant something like:

"전남대와 부산대의 취업률과 경쟁률을 비교해줘."

It calls explore_universities and returns each institution's values with the source, year, and unit attached — for example (2025 bundled snapshot):

| 대학 | 취업률 | 신입생 경쟁률 | |---|---:|---:| | 전남대학교 | 57.6% | 7.4:1 | | 부산대학교 | 57.5% | 9:1 |

Ambiguous names return candidate campuses instead of guessing, and comparisons never rank, score, or pick a winner — the numbers are presented as-is with provenance so you decide.

Evidence-scoped status

Implemented in this checkout:

  • a file-first, offline, read-only stdio server backed by the bundled 15118998 derivative database;
  • exactly eight registered MCP tools (the seven legacy tools plus explore_universities);
  • a schema-validated, KOGL-attributed data-only indicator catalog at data/seed/indicators.json;
  • Node engine >=22 <23 and the closed direct production dependency set @modelcontextprotocol/[email protected], [email protected], [email protected], and [email protected];
  • ambiguity handling that returns candidates rather than guessing, and factual comparisons without scores, ranks, winners, or recommendations.

Published: [email protected] is live on the public npm registry (latest), published by hand from an isolated terminal ceremony (docs/manual-publish-runbook.md) and smoke-verified with an anonymous npx -y [email protected] install that resolves the exact registry tarball and lists all eight tools.

Not yet performed (intentional, proportionate for a first solo release):

  • the formal no-compile npx proof across all three official Node 22 lanes (macOS/arm64, Windows/x64, Ubuntu glibc/x64) — only a single-machine smoke test was run;
  • the receipt-bound candidate→client→promotion evidence chain and an actual-client (Claude Desktop) receipt;
  • an approved unattended official download link or a completed annual refresh.

The package ships [email protected] as its sole backend. It installs from prebuilt binaries on the maintainer's Node 22 macOS/arm64 lane; the full three-lane prebuilt-only matrix has not been independently proven. Exactly one backend ships.

Requirements

Use Node >=22 <23. Node 24 and later are not supported or claimed. The public support matrix is limited to Node 22 on:

  • macOS/arm64;
  • Windows/x64;
  • Ubuntu glibc/x64.

Those lanes are targets until public-install evidence is collected; local success is not public support evidence.

Local checkout use

The implemented local behavior can be exercised from a checkout:

npm install
npm run build
node dist/src/index.js

The last command starts an MCP stdio server. It does not provide an interactive shell. MCP protocol output is written to stdout; diagnostics must remain on stderr.

No API-key environment variable is required. ACADEMYINFO_DB_PATH may select another compatible local database; otherwise the bundled seed is used. Runtime tools do not write the database or contact an external service. This development checkout defines npm run doctor, npm run refresh:acquire-validate, and npm run refresh:verify-artifact. Only doctor has its compiled program included in the packed npm artifact, where it is a local package/data/runtime diagnostic; it does not prove public installation, backend selection, refresh acceptance, or release approval. The compiled refresh programs, their TypeScript build sources, and required development dependencies are excluded from the package, so both refresh commands are checkout-only protected-workflow internals, not supported installed-package commands. Direct local invocation is never an authoritative acquisition, writer, or release receipt.

Version pinning

The Quickstart uses the unversioned academyinfo-mcp, which resolves to the current latest (now 0.1.0). To pin a specific version instead, use [email protected] in the args. Cursor and Codex use the same command/args shape as the Claude Desktop example; they are documented configurations and behave identically over MCP stdio.

Exact eight-tool scope

  1. list_sources
  2. list_indicators
  3. search_university
  4. get_university_metrics
  5. compare_universities
  6. explain_indicator
  7. validate_source_coverage
  8. explore_universities

The first seven contracts remain backward compatible. For client compatibility, tools/list registers explore_universities with this exact permissive Draft-07 outer input schema:

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "university_queries": {},
    "indicators": {}
  },
  "additionalProperties": {}
}

The registered schema deliberately has no required keyword, and both property schemas plus additionalProperties are empty schemas. It is only the discovery boundary; the handler separately applies strict internal validation. The handler requires university_queries, rejects unknown top-level fields, accepts 1–10 unique trimmed query strings of 1–120 Unicode code points, and accepts an optional indicators array containing at most five unique supported nonempty indicator IDs. Invalid input fails before any journey is evaluated.

A valid explore_universities request is resolved against one local read-only snapshot. It is all-or-nothing. A missing or ambiguous university returns no partial metrics, comparisons, or explanations. Ambiguous matches return up to 20 repository-ordered candidates and never select one. The tool does not rank by metric values or substitute for a user's choice.

Every successful value or explanation retains source and license information, year or base year, unit, source column, derived/bundled status, and warnings. Missing source values remain explicit rather than being inferred.

Indicators and data boundary

The catalog contains exactly five indicators from bundled dataset 15118998:

| indicator | label | snapshot year | unit | |---|---|---:|---| | competition_rate | 신입생 경쟁률 | 2025 | :1 | | fill_rate | 신입생 충원율 | 2025 | % | | employment_rate | 취업률 | 2025 | % | | scholarship_per_student | 학생 1인당 연간 장학금 | 2025 | | | avg_tuition | 평균 등록금 | 2026 | 천원 |

These dates describe the currently bundled point-in-time snapshot, not a live feed or latest-data guarantee. The catalog is JSON data, validated by a closed static schema and packaged under the data license; it is not generated executable source. The database, manifest, and catalog are independently cross-checked.

Dataset 15139279 is not bundled, enabled, sampled, normalized, or used for default employment results. Live OpenAPI access, scraping, and granular employment behavior are outside this release.

Refresh safety summary

Refresh approval is semantic, not based on a frozen checksum or fixed column count. Acquisition is read-only and separate from the fixed-path repository writer. A refresh must preserve indexed raw cells and prove:

  • official source, workbook, and license identity;
  • one unique identity mapping and one unique mapping for each of the five logical indicators;
  • fixed verified units and nondecreasing integer years;
  • exact row coverage: every source row maps once, with five numeric-or-missing classifications;
  • missing values only for trimmed empty text or ASCII -;
  • exact nonnegative decimal parsing and round-trip safety, with no rounding.

A post-download SHA-256 is integrity, change, and audit evidence only. A changed checksum, institution set, values, allowed missingness, unrelated columns, or a valid 23/25-column workbook can pass when all semantic invariants pass. A prior-checksum match does not authenticate a source. See docs/refresh-release-runbook.md.

Freshness and release behavior

A refresh incident has an immutable first-seen time and a seven-day (604800000 ms) deadline; metadata, ETag, or repeated-failure drift does not reset it. Invalid official timestamps do not become trusted times.

  • Equal reacquired bytes may close an incident only after origin/license/workbook validation and an administrator-attested verified-no-change receipt.
  • Differing bytes enter the changed lifecycle and close only when the matching release-data digest is promoted to latest.
  • Failed validation or release leaves the last-known-good data and public version in service.
  • Rolling back reopens the original changed-event clock; a corrected release uses a new SemVer.

Candidate publication is not completion. Public matrix evidence and actual Claude Desktop/macOS evidence must be joined into protected receipts before administrator-approved promotion. Rollback restores the prior latest, deprecates the bad version, preserves evidence, and reopens the incident when applicable. Candidate publication, promotion, and rollback all serialize npm registry mutation through the academyinfo-mcp-registry-mutation concurrency group with cancel-in-progress: false. After promotion, the uploaded post-mutation promotion.v1.json must be retained and persisted byte-identically in a protected immutable default-branch evidence commit at evidence/releases/<version>/promotion.v1.json before rollback is available. After rollback, its uploaded post-mutation rollback.v1.json must likewise be retained and persisted byte-identically at evidence/releases/<bad_version>/rollback.v1.json.

Public-install proof boundary

Local installs and local tarballs do not satisfy public acceptance. Each official lane must use a fresh home, cache, working directory, and configuration outside the checkout; an explicit public registry; no reachable local artifact; and exact:

npx -y academyinfo-mcp@<version>

The proof must record the installed application and the complete direct production dependency set—@modelcontextprotocol/[email protected], [email protected], [email protected], and [email protected] in the current single-backend package—plus each registry integrity; candidate tag and provenance/signature evidence; Node/OS/architecture (and glibc on Ubuntu); active Python/node-gyp/compiler traps with a demonstrated canary; verbose sanitized install logs; initialization; the exact eight-tool list and explore_universities schema; a bundled-data query; no-key behavior; and JSON-RPC-only stdout. A separately approved backend replacement requires the verifier and this closed dependency set to change together. Promotion is prohibited if any lane compiles native code, resolves another direct dependency version, reaches a local package, or lacks the required evidence.

Administrator prerequisites

Before candidate publication, an administrator must establish npm package identity/history and ownership, select an unused SemVer, confirm 2FA/trusted-publishing and provenance readiness, configure exactly the protected environments refresh-pr-writer, npm-candidate, public-candidate-proof, claude-desktop-client-proof, npm-promotion, and npm-rollback with required approvals and artifact retention, define protected ACADEMYINFO_RELEASE_ADMINISTRATOR as the exact receipt-authority identity, and define ACADEMYINFO_PUBLIC_INSTALL_VERIFIER_SHA256 plus ACADEMYINFO_RELEASE_RECEIPT_VERIFIER_SHA256 from the reviewed current verifier policy. The administrator must resolve the single-backend gate and approve the immutable candidate, client-proof, promotion, and any rollback receipts at their separate privilege boundaries. Every protected verifier call binds the configured authority and reviewed verifier bytes; neither receipt-provided identity nor caller-selected historical code is authority. No repository document selects a version or grants those approvals.

License and privacy boundaries

  • Code is MIT licensed (LICENSE).
  • Bundled 15118998 data is a normalized derivative under KOGL Type 1 attribution requirements (DATA_LICENSE.md, NOTICE.md, and data/seed/LICENSE.15118998.md). Code and data licenses remain separate.
  • Release artifacts, receipts, logs, errors, examples, and MCP responses must not contain credentials, service keys, signed query strings, local user names, machine identifiers, or private filesystem paths.
  • Raw workbooks and signed download URLs are not package contents.

The normative scope and gates are maintained in the repository at PROJECT_CHARTER.md, NON_GOALS.md, and RELEASE_CHECKLIST.md.