fiscal-api-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DATAGOKR_API_KEY | No | 선택 API 키 (data.go.kr) | |
| NABOSTATS_API_KEY | No | 선택 API 키 (nabostats.go.kr) | |
| OPENFISCAL_API_KEY | Yes | 필수 API 키 (openfiscaldata.go.kr) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| fiscal_guideA | 열린재정 OpenAPI 전체 카탈로그(157개)를 카테고리별로 안내합니다. category 없이 호출하면 카테고리 요약을 반환합니다. category를 지정하면 해당 카테고리의 전체 API 목록(코드·이름·필수파라미터)을 반환합니다. 데이터를 찾을 때: fiscal_guide → fiscal_search → fiscal_query 순서로 사용하세요. |
| fiscal_searchA | 키워드 또는 카테고리로 열린재정 API를 검색합니다. 검색 결과에서 code를 확인한 뒤 fiscal_query로 데이터를 호출하세요. 예: fiscal_search(keyword="국가채무") → code 확인 → fiscal_query(api_code=..., params={...}) |
| fiscal_queryB | 열린재정 API를 호출해 데이터를 조회합니다. api_code는 fiscal_search 또는 fiscal_guide로 먼저 확인하세요. page_size 기본값은 100입니다 (최대 1000). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| 재정데이터_수집_워크플로우 | 재정 도메인 데이터를 체계적으로 수집하는 워크플로우 |
| 부처별_재정현황_수집 | 특정 부처의 재정현황을 전방위 수집 |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clear, distinct purpose: fiscal_guide for catalog navigation, fiscal_search for finding APIs, and fiscal_query for data retrieval. The documentation explicitly specifies the recommended order of use, eliminating ambiguity.
All names use snake_case with a consistent 'fiscal_' prefix, following a verb-like pattern (guide, search, query). Slight deviation: 'fiscal_guide' is more noun-like than verb-like, but overall pattern is coherent.
Three tools is perfectly scoped for a data API server: one for exploration, one for search, and one for direct query. Each tool serves a necessary function without redundancy.
The tool set covers the full workflow from discovering APIs (guide), to finding specific endpoints (search), to fetching data (query). There are no obvious gaps for the stated purpose of accessing the 열린재정 OpenAPI.