korea-onegov-mcp (socialkim/korea-onegov-mcp) is an MCP server listed on the M8ven Trust Index. It scores 62 out of 100, grade C. It declares 11 tools. No publisher has claimed this listing.

C
Caution
62/100

korea-onegov-mcp

Enables searching and retrieving Korean government documents (press releases, policies, laws, statistics, etc.) from about 50 central administrative agencies through natural language interactions with AI assistants like Claude and ChatGPT.

Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code Verified⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

socialkim

Source: Glama

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
⚠️
Known vulnerabilities in dependencies: 3 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
Open source with a license and README
Anyone can audit the code, the license is declared, and the publisher documents what it does.
// tools this server exposes11 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

onegov_search
onegov_get_document
onegov_suggest_keywords

입력한 앞글자로 시작하는, 실제 색인에 존재하는 검색어를 돌려준다. 검색 결과가 0건일 때 정확한 용어를 찾는 용도로 먼저 쓰면 좋다. Args: - prefix (string, 필수): 앞글자(예: "청년", "반도체"). - response_format ('markdown'|'json', 기본 markdown) Returns: { suggestions: [{ text, doc_type }] } Examples: - "청년" → 청년도약계좌, 청년월세지원, 청년기본법 … - 쓰지 말 것: 실제 문서를 찾을

onegov_list_ministries

색인된 중앙행정기관 목록과 각 기관의 보유 문서 수를 돌려준다. onegov_search 의 ministry 필터에 넣을 코드를 여기서 얻는다. Args: - name_contains (string, 선택): 기관명에 포함된 글자로 필터(예: "고용", "국토"). - response_format ('markdown'|'json', 기본 markdown) Returns: { ministries: [{ ministry_code, name, org_type, parent_code, doc_count }] } 참고: "

onegov_trending_keywords

공개자료 제목에서 자주 등장하는 상위 키워드와 등장 횟수를 돌려준다. "요즘 정부가 뭘 많이 하나"를 훑거나 검색어 후보를 잡을 때 쓴다. Args: - limit (number, 1~100, 기본 30) - response_format ('markdown'|'json', 기본 markdown) Returns: { keywords: [{ text, count, weight }] }

onegov_deadline_grants

접수 마감이 임박한 정부 지원사업·공고를 마감일 순으로 돌려준다. 창업·중소기업·소상공인 지원사업 탐색의 출발점. Args: - max_dday (number, 0~60, 선택): D-day 상한. 예: 7 이면 일주일 안에 마감하는 것만. - org_contains (string, 선택): 기관명 부분 문자열 필터(예: "중소벤처기업부", "조달청"). - limit (number, 1~100, 기본 30) - response_format ('markdown'|'json', 기본 markdown) Returns:

onegov_find_support_programs

지원사업(category=grant) 과 고시·공고(doc_type=notice) 로 범위를 미리 좁혀 검색하는 편의 도구. "창업 지원금", "소상공인 지원사업" 같은 요청에 바로 쓴다. onegov_search 에 category=["grant"] 를 매번 넣는 것과 같지만, 필요한 필터만 노출해 실수를 줄인다. Args: - query (string, 필수): 무엇에 대한 지원사업인지(예: "청년 창업", "수출", "AI"). - region (string[], 선택): 지역명(예: ["서울특별시"]). 전국 사업

onegov_ministry_latest

한 부처(또는 여러 부처)의 최신 공개자료를 발행일 역순으로 가져온다. "국토부 요즘 뭐 냈어?" 같은 질문에 쓴다. Args: - ministry (string[], 필수): 기관코드 배열(예: ["MOLIT"]). 코드는 onegov_list_ministries 로 확인. - doc_type (string[], 선택): 특정 유형만(예: ["press_release"]). - query (string, 선택): 부처 내에서 다시 좁힐 검색어. - days (number, 1~365, 선택): 최근 N일로 제한.

onegov_research_topic

한 주제에 대해 검색을 돌린 뒤, 상위 문서 몇 건의 본문까지 자동으로 받아와 한 번에 돌려준다. "이 주제 정부 자료 정리해줘" 같은 요청에서 검색→전문조회 왕복을 줄여 준다. Args: - query (string, 필수): 조사할 주제. - depth (number, 1~5, 기본 3): 본문까지 받아올 상위 문서 수. 많을수록 느리고 응답이 길다. - doc_type (string[], 선택) / ministry (string[], 선택) / from / to: onegov_search 와 동일한 필터. -

search

ChatGPT 커넥터/딥리서치 규격에 맞춘 검색 도구. 대한민국 정부 공개자료를 검색해 {id, title, url} 목록을 돌려준다. 일반적인 MCP 클라이언트에서는 필터가 풍부한 onegov_search 를 쓰는 편이 낫다. Args: query (string, 필수) Returns: { results: [{ id, title, url }] } 를 JSON 문자열로.

fetch

ChatGPT 커넥터/딥리서치 규격에 맞춘 문서 조회 도구. search 가 돌려준 id로 전문을 가져온다. Args: id (string, 필수) Returns: { id, title, text, url, metadata } 를 JSON 문자열로.

// known CVEs in dependencies3 high

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

high@modelcontextprotocol/sdk@1.20.0GHSA-345p-7cg4-v4c7

@modelcontextprotocol/sdk has cross-client data leak via shared server/transport instance reuse

high@modelcontextprotocol/sdk@1.20.0GHSA-8r9q-7v3j-jr4g

Anthropic's MCP TypeScript SDK has a ReDoS vulnerability

high@modelcontextprotocol/sdk@1.20.0GHSA-w48q-cv73-mx4w

Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
configHOST127.0.0.1 로컬 HTTP 모드 바인딩 주소
configONEGOV_API_BASE
configONEGOV_CHATGPT_COMPATsearch / fetch ChatGPT 커넥터·딥리서치 규격 호환용 (=off 로 끌 수 있음)
configONEGOV_TIMEOUT_MS25000 외부 API 타임아웃
configSIM_PORT
configSMOKE_PORT
configTRANSPORT
Deployment configuration, supplied by whoever hosts the server. Users are not asked for these.
deployPORT
// quality suggestions

Tool annotations

No tools have read-only/destructive annotations

Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.

All four hints declared on every tool

11/11 tools missing one or more hints — onegov_search (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); onegov_get_document (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); onegov_suggest_keywords (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +8 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.

For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.

Tests exist

No test files found

Add tests that exercise each declared tool.

Production dependencies are patched

0 critical, 3 high severity in production deps — @modelcontextprotocol/sdk@1.20.0 (high), @modelcontextprotocol/sdk@1.20.0 (high)

Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 4 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/socialkim/korea-onegov-mcp?variant=verified)](https://m8ven.ai/mcp/socialkim/korea-onegov-mcp)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: 1cfb500251e034a7ad8e10d4834539b85bce9410
code hash: 96f899f8d7482b9c3a118027d651755823018a5aac690cca1877d3aecf40eb00
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client