academyinfo-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@academyinfo-mcp전남대와 부산대의 취업률과 경쟁률을 비교해줘."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
academyinfo-mcp
English | 한국어
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-mcpThe server speaks MCP over stdio (JSON-RPC on stdout, diagnostics on stderr).
Try it
Ask your assistant something like:
"전남대와 부산대의 취업률과 경쟁률을 비교해줘."
The server never guesses an ambiguous name. "전남대학교" matches two campuses, so the first
explore_universities call returns status: "ambiguous" with the candidates instead of a table:
전남대학교 → 2 candidates
전남대학교 / 본교 (국립, 광주)
전남대학교 / 제2캠퍼스 (국립, 전남)Pick a campus and ask again (assistants usually do this follow-up on their own):
"전남대학교 본교와 부산대학교로 비교해줘."
The second call returns status: "ok" with each institution's values and the source, year,
and unit attached — for example (2025 bundled snapshot):
대학 | 취업률 | 신입생 경쟁률 |
전남대학교 본교 | 57.6% | 7.4:1 |
부산대학교 | 57.5% | 9:1 |
This two-step flow is the designed behavior, not a failure: 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.
Related MCP server: paycoreDb
Evidence-scoped status
Implemented in this checkout:
a file-first, offline, read-only stdio server backed by the bundled
15118998derivative 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 <23and the closed direct production dependency set@modelcontextprotocol/sdk@1.29.0,better-sqlite3@11.10.0,pino@10.3.1, andzod@4.4.3;ambiguity handling that returns candidates rather than guessing, and factual comparisons without scores, ranks, winners, or recommendations;
a checkout-only stateless Streamable HTTP entry point (
dist/src/http.js, POST-only, excluded from the npm package) alongside the packaged stdio entry point, withreadOnlyHint/openWorldHintannotations on all eight tools.
Published: academyinfo-mcp@0.3.1 is live on the public npm registry (latest), published by hand from an isolated terminal ceremony (docs/manual-publish-runbook.md). The initial 0.1.0 release was smoke-verified with an anonymous npx -y academyinfo-mcp@0.1.0 install that resolves the exact registry tarball and lists all eight tools; later releases (0.1.1, 0.1.2, 0.2.0, 0.3.0, 0.3.1) follow the same runbook.
Not yet performed (intentional, proportionate for a first solo release):
the formal no-compile
npxproof across all three official Node 22 lanes (macOS/arm64, Windows/x64, Ubuntu glibc/x64) — only a single-machine smoke test was run. Separately, a one-off manual run (2026-07-24, outside CI) on Ubuntu 24.04 glibc/x64 with Node 22 installedacademyinfo-mcp@0.1.1anonymously, resolvedbetter-sqlite3from prebuilt binaries without compiling, and verified initialize, all eight tools, and anexplore_universitiescall with JSON-RPC-only stdout; this is recorded observation, not the formal lane proof, and macOS/arm64 and Windows/x64 remain unverified;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 better-sqlite3@11.10.0 as its sole backend. It installs from prebuilt binaries on the maintainer's Node 22 macOS/arm64 lane and, in the one-off manual run above, on Ubuntu 24.04 glibc/x64; 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.jsThe 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.
Remote endpoint (Streamable HTTP, checkout-only)
The npm package remains stdio-only. A checkout (or a container image built from it) also provides a stateless Streamable HTTP entry point for remote MCP clients such as claude.ai custom connectors:
npm run build
PORT=8080 ALLOWED_HOSTS=<public-host> npm run start:httpPOST /mcpaccepts one JSON-RPC MCP request per call and answers a JSON response; GET (SSE streams) and DELETE (sessions) are not served because every request runs on a fresh server instance.GET /healthzandGET /healthanswer200 okfor deployment health checks (on Cloud Runrun.appdomains the Google frontend consumes the literal/healthzpath, so external probes must use/health).ALLOWED_HOSTS(comma-separated) enables DNS rebinding protection; leave it unset only behind a trusted proxy.dist/src/http.jsis excluded from the npm package, so installednpx academyinfo-mcpbehavior is unchanged.
A remote deployment serves the same bundled point-in-time snapshot under the same attribution and disclaimer boundaries: it is not a live feed and does not guarantee the latest data, and the operator remains unaffiliated with the Ministry of Education, KCUE, KEDI, data.go.kr, academyinfo.go.kr, or any university.
Version pinning
The Quickstart uses the unversioned academyinfo-mcp, which resolves to the
current latest (now 0.3.1). To pin a specific version instead, use academyinfo-mcp@0.3.1
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
list_sourceslist_indicatorssearch_universityget_university_metricscompare_universitiesexplain_indicatorvalidate_source_coverageexplore_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 seventeen indicators from bundled dataset 15118998:
indicator | label | snapshot year | unit |
| 신입생 경쟁률 | 2025 |
|
| 신입생 충원율 | 2025 |
|
| 취업률 | 2025 |
|
| 학생 1인당 연간 장학금 | 2025 |
|
| 평균 등록금 | 2026 |
|
| 입학정원 | 2025 |
|
| 졸업생수 | 2025 |
|
| 전임교원수(학부+대학원) | 2025 |
|
| 재학생 | 2025 |
|
| 외국인 학생 수 | 2025 |
|
| 전임교원 1인당 학생 수(학생정원기준)(학부+대학원) | 2025 |
|
| 전임교원 확보율(학생정원기준)(학부+대학원) | 2025 |
|
| 전임 교원 확보율(재학생 기준)(학부+대학원) | 2025 |
|
| 전임교원 강의 담당 비율 | 2025 |
|
| 학생 1인당 교육비(학부+대학원) | 2025 |
|
| 기숙사 수용율(학부+대학원) | 2025 |
|
| 학생 1인당 도서 자료 수(학부+대학원) | 2025 |
|
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 seventeen logical indicators;
fixed verified units and nondecreasing integer years;
exact row coverage: every source row maps once, with seventeen 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 24/26-column workbook can pass when all semantic invariants pass. A prior-checksum match does not authenticate a source. See docs/refresh-release-runbook.md.
Automated acquisition currently stops at DOWNLOAD_LINK_MISSING: the reviewed canonical page is reachable and its license verifies, but it exposes no anonymously fetchable download link, and policy forbids guessing an endpoint or scraping a replacement. Refresh is therefore performed manually — see docs/manual-refresh.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/sdk@1.29.0, better-sqlite3@11.10.0, pino@10.3.1, and zod@4.4.3 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.
Support
This project is published as-is, without support. Issues, questions, and feature requests are not monitored and will generally not receive a reply, and there is no service level for availability, data freshness, or response time. It is a personal open-source project maintained on a best-effort basis by one person and is not operated by any institution.
You are welcome to use it under the licenses below, and to fork it if you need changes. Do not depend on it for anything where an unanswered question or an unpatched defect would matter.
License and privacy boundaries
Code is MIT licensed (
LICENSE).Bundled
15118998data is a normalized derivative under KOGL Type 1 attribution requirements (DATA_LICENSE.md,NOTICE.md, anddata/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.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseDqualityBmaintenanceMCP server for South Korean election research, providing tools to search candidates, retrieve election results, and lookup campaign booklet texts using NEC open data and the krpoltext dataset.161MIT
- Flicense-qualityCmaintenanceCustom MCP server connected to a read-only SQLite database, exposing a schema resource and a query tool for safe data retrieval.
- Flicense-qualityBmaintenanceMCP server for searching and recommending Korean public resources (rooms, facilities, parking, etc.) using a static snapshot of the eShare OPEN API, with read-only tools for filtered search, detail, recommendation, and filter options.
- Alicense-qualityCmaintenanceMCP server for querying Korean school budget, unit projects, and special plans through the School Alert (학교알리미) open data API.MIT
Related MCP Connectors
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Read-only MCP server for wafergraph.com's semiconductor & AI supply-chain data: 30 tools, no auth.
Read-only MCP server for searching Japan government procurement bid information from the KKJ portal.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yousunjung84-edu/academyinfo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server