Price Per TokenPrice Per Token
OpenData MCP

OpenData MCP

by iosif2

GitHub 9 428 uses Remote
0

About

OpenData MCP is a Model Context Protocol server that enables AI assistants to discover, document, and call APIs from the Korean Public Data Portal (공공데이터포털 / data.go.kr). Key features of OpenData MCP: - Search available public APIs by keyword through the Korean government data portal - Automatically generate standardized OpenAPI documentation in Markdown format from search results - Execute direct HTTPS calls to OpenAPI endpoints with configurable parameters, headers, and request bodies - Automatic authentication handling with service key injection for authorized endpoints - Support for GET and POST methods with proper parameter mapping and header management The server integrates with an MCP backend at mcp.ezrnd.co.kr and requires an ODP_SERVICE_KEY environment variable for accessing authenticated Korean public datasets.

README

Open Data MCP

[](https://smithery.ai/server/@iosif2/opendata-mcp)

한국 공공데이터포털(OpenAPI)을 더 쉽게 탐색·호출할 수 있도록 돕는 Model Context Protocol(MCP) 서버입니다. 다음과 같은 MCP 도구를 제공합니다:

  • search_api: 키워드로 공공데이터 API를 검색
  • get_std_docs: 검색 결과에서 선택한 listId 목록으로 표준 문서(markdown) 병합
  • fetch_data: 표준 문서/메타데이터를 바탕으로 실제 OpenAPI 엔드포인트 호출
  • 내부적으로 검색/문서 도구는 mcp.ezrnd.co.kr(HTTPS) 백엔드를 사용합니다.

    요구 사항

  • Node.js ≥ 18.17 (권장: 최신 LTS)
  • npm (패키지 매니저)
  • 설치

    npm install
    

    실행(개발)

    Smithery CLI를 사용해 MCP 개발 서버를 구동할 수 있습니다.

    npm run dev
    

    > 참고: @smithery/cli가 MCP 호스트 역할을 하며, 테스트 환경에서는 기능 미지원으로 인해 ODP_SERVICE_KEY주입이 불가능합니다 > 추후 환경변수 등으로 사전 주입하여 서버를 실행할 수 있게 수정 예정

    환경변수

  • ODP_SERVICE_KEY: 공공데이터포털 서비스 키. 일부 API는 쿼리 파라미터 또는 Authorization 헤더로 키 주입이 필요합니다.
  • - 파라미터 이름에 serviceKey가 포함되어 있으면 자동 주입됩니다. - 헤더 이름에 Authorization이 포함되어 있으면 {Prefix} {키} 형식으로 자동 주입됩니다.

    제공 도구 상세

    #### search_api

  • 설명: 공공데이터포털에서 키워드로 API 목록을 검색합니다.
  • 입력:
  • - query: 문자열 배열(공백 없는 키워드, 최대 5개 권장) - page: 페이지 번호(1부터) - pageSize: 페이지 크기
  • 출력: 검색 결과(JSON 문자열)
  • #### get_std_docs

  • 설명: search_api 결과에서 선택한 항목들의 listId 배열을 받아 표준 문서(markdown)를 합쳐 반환합니다.
  • 입력:
  • - listId: number[]
  • 출력: 통합된 markdown 문자열
  • #### fetch_data

  • 설명: OpenAPI 메타데이터를 기반으로 특정 엔드포인트를 호출합니다. 기본 프로토콜은 HTTPS입니다.
  • 입력: requestData
  • - baseInfo.host: 예) apis.data.go.kr (프로토콜/슬래시 금지) - baseInfo.base_path: 예) /B552015/NpsBplcInfoInqireServiceV2 - endpointInfo.path: 예) /getBassInfoSearchV2 - endpointInfo.method: GET 또는 POST - endpointInfo.params: [{ name, value }] 배열. 값이 없으면 제외됩니다. - endpointInfo.headers: [{ name, prefix, value }] 배열. Authorization에 서비스키 자동 주입 지원. - endpointInfo.body: POST 본문(JSON)
  • 출력: 응답 본문(JSON 문자열 또는 텍스트)
  • 라이선스

    이 저장소의 라이선스는 루트의 LICENSE 파일을 참고하세요.

    Related MCP Servers

    AI Research Assistant

    AI Research Assistant

    hamid-vakilzadeh

    AI Research Assistant provides comprehensive access to millions of academic papers through the Semantic Scholar and arXiv databases. This MCP server enables AI coding assistants to perform intelligent literature searches, citation network analysis, and paper content extraction without requiring an API key. Key features include: - Advanced paper search with multi-filter support by year ranges, citation thresholds, field of study, and publication type - Title matching with confidence scoring for finding specific papers - Batch operations supporting up to 500 papers per request - Citation analysis and network exploration for understanding research relationships - Full-text PDF extraction from arXiv and Wiley open-access content (Wiley TDM token required for institutional access) - Rate limits of 100 requests per 5 minutes with options to request higher limits through Semantic Scholar

    Web & Search
    12 8
    Linkup

    Linkup

    LinkupPlatform

    Linkup is a real-time web search and content extraction service that enables AI assistants to search the web and retrieve information from trusted sources. It provides source-backed answers with citations, making it ideal for fact-checking, news gathering, and research tasks. Key features of Linkup: - Real-time web search using natural language queries to find current information, news, and data - Page fetching to extract and read content from any webpage URL - Search depth modes: Standard for direct-answer queries and Deep for complex research across multiple sources - Source-backed results with citations and context from relevant, trustworthy websites - JavaScript rendering support for accessing dynamic content on JavaScript-heavy pages

    Web & Search
    2 24
    Math-MCP

    Math-MCP

    EthanHenrickson

    Math-MCP is a computation server that enables Large Language Models (LLMs) to perform accurate numerical calculations through the Model Context Protocol. It provides precise mathematical operations via a simple API to overcome LLM limitations in arithmetic and statistical reasoning. Key features of Math-MCP: - Basic arithmetic operations: addition, subtraction, multiplication, division, modulo, and bulk summation - Statistical analysis functions: mean, median, mode, minimum, and maximum calculations - Rounding utilities: floor, ceiling, and nearest integer rounding - Trigonometric functions: sine, cosine, tangent, and their inverses with degrees and radians conversion support

    Developer Tools
    22 81