ECOS MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ECOS_API_KEY | No | Your ECOS Open API key. If not provided, a sample key is applied automatically (with reduced limits). |
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": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_popular_statisticA | 한국은행 핵심 경제지표를 코드 검색 없이 단 1번의 호출로 즉시 조회합니다. |
| search_statisticsA | 통계 시계열 데이터를 조건별로 조회합니다. |
| search_statistic_tablesA | 통계표 이름으로 통계표코드(STAT_CODE)를 검색하거나, 통계표 분류 트리를 탐색합니다. |
| get_key_statisticsA | 100대 주요 경제지표를 조회합니다. |
| search_statistic_wordA | 경제/통계 용어의 정의를 검색합니다. |
| list_statistic_itemsA | 특정 통계표의 세부 항목(항목코드, 지원 주기, 수록 기간, 단위)을 조회합니다. |
| get_statistic_metaA | 통계 데이터셋의 메타데이터(구조, 작성방법, 설명)를 조회합니다. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| macro-economic-briefing | 한국 거시경제 핵심 지표 종합 브리핑 프롬프트. |
| analyze-economic-trend | 특정 경제 지표의 시계열 추이 및 시사점 심층 분석 프롬프트. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| get_popular_indicators_resource | 한국은행 주요 핵심 경제지표 코드 및 주기 매핑표 리소스. |
| get_date_format_guide_resource | 주기별 올바른 날짜 포맷 규격서 리소스. |
TDQS
Scored across 7 tools
get_popular_statistic, get_key_statistics, and search_statistics all return economic indicator data, so an agent must infer which mode fits the query. The descriptions clarify code-free keyword lookup versus generic code-based queries versus a fixed 100-indicator list, but 'popular' and 'key' remain semantically close.
Names are grouped by action (get_, search_, list_) and remain readable, but the set mixes singular and plural forms ('statistic' vs 'statistics') and uses different object patterns like get_popular_statistic versus get_key_statistics. The naming is not chaotic, but it is not fully consistent.
Seven tools is a well-scoped size for an economic-statistics server. Each tool serves a distinct stage of the workflow: quick lookup, generic retrieval, table discovery, item discovery, metadata, and dictionary lookup.
The tool surface covers the main ECOS workflows end to end: find a statistical table, inspect its items, retrieve time series, fetch metadata, look up terms, and access popular or major indicators. There are no obvious dead ends or missing core operations for the stated domain.