Skip to main content
Glama
bluedragonDC

MEDAS MCP

by bluedragonDC

MEDAS MCP (아직 개발 중!)

TÜİK MEDAS(터키 통계청 지표)용 MCP 서버입니다.

기능

  • 92개 주제 — 모든 TÜİK 통계 카테고리

  • 400개 이상의 지표 — 즉시 캐시, 라이브 폴백 지원

  • 동적 탐색 — 하드코딩된 위젯 ID 0개, UI 변경에 적응

  • 캐시 우선list_topics/get_indicators/download 모두 캐시에서 <50ms

  • 바이너리 XLS — xlwt CDFV2 Excel 출력(MEDAS pivot.xls와 동일 형식)

  • 스마트 캐스케이딩 — 필수 분류(COICOP, SITC 등) 자동 선택

  • ZK 위젯 APIzk.Widget.$().fire()을 통한 견고한 kırılım 처리

Related MCP server: evds-mcp-server

설치

pip install playwright xlwt httpx
playwright install chromium

또는 uv 사용:

uv pip install -e .
playwright install chromium

사용법

MCP 서버로 사용(stdio)

python server.py

Pi 통합

~/.pi/config.json에 추가:

{
  "extensions": {
    "medas": {
      "command": "python",
      "args": ["/path/to/medas_mcp/server.py"],
      "cwd": "/path/to/medas_mcp"
    }
  }
}

Claude Desktop

{
  "mcpServers": {
    "medas": {
      "command": "python",
      "args": ["/path/to/medas_mcp/server.py"]
    }
  }
}

도구

도구

설명

속도

list_topics(search?)

92개 TÜİK 주제 나열

<50ms (캐시)

get_indicators(topic_index)

지표 + 캐스케이딩 분기 가져오기

<50ms (캐시)

download(topic_index, indicators?, format?, save_path?, live?)

XLS/CSV 보고서 다운로드

<50ms 캐시 / ~12s 라이브

예시 흐름

1. list_topics("fiyat") → [{index:78, label:"Tüketici Fiyat Endeksi"}]
2. get_indicators(78) → {count:12, indicators:[...]}
3. download(78, format="xls") → /tmp/MEDAS_Tüketici_Fiyat_Endeksi_20260820.xls

아키텍처

AI Agent  ⇄  MCP (stdio)  ⇄  server.py  ⇄  medas_client.py
                                            ├─ cache (data/*.json) → instant
                                            └─ Playwright (live=true) → ZK AU protocol

캐시 vs 라이브

모드

소스

속도

데이터

live=false (기본값)

data/*.json 캐시

<50ms

지표 이름 + 목업 값

live=true

POST /medas/zkauGET /pivot.xls

~12s

실제 MEDAS 피벗 테이블

파일

medas_mcp/
├── server.py              # MCP server (3 tools)
├── medas_client.py        # Hybrid client (cache + live Playwright)
├── KNOWHOW.md             # ZK AU protocol traffic notes
├── AGENTS.md              # AI agent instructions
├── README.md              # This file
├── pyproject.toml         # Package metadata
├── .gitignore
└── data/
    ├── topic_mapping.json  # 92 topics with URLs
    ├── topic_gosterge.json # Indicators + cascading branches
    └── medas_unified.json  # Unified dataset

ZK AU 프로토콜

  • dtid + 배치된 cmd_n=onSelect/onClick과 함께 POST /medas/zkau;jsessionid=XXX

  • 위젯 ID는 세션마다 변경 — DOM에서 동적으로 발견

  • 캐스케이딩: zk.Widget.$('#selectId').fire('onSelect', {items:[itemId], reference:itemId})

라이선스

MIT

F
license - not found
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    A
    quality
    D
    maintenance
    Enables users to search and access Turkish public procurement data from EKAP v2 portal. Provides comprehensive tender search, detailed tender information, announcements, and authority/classification code lookups through natural language interactions.
    12
    94
    MIT
  • F
    license
    A
    quality
    C
    maintenance
    Enables querying Turkish economic data (inflation, FX rates, policy rates, etc.) from TCMB EVDS via curated tools, preventing LLM hallucination.
    6
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables querying Kosovo Agency of Statistics (ASKdata) data through PxWeb. Supports navigating subjects, exploring table metadata, and fetching data via natural language or direct tool calls.
    4
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Provides unified access to Turkish official data from TÜİK (statistics via SDMX) and TCMB EVDS (financial series), enabling search, query, and tidy CSV export with full frequency, aggregation, and formula support.
    16
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Macro indicators from World Bank, FRED, IMF, and OECD via unified query surface.

  • Macro data for AI agents: GDP, inflation, unemployment & trade, any country. No API keys.

  • Query 29,500+ World Bank development indicators for 200+ countries across 60+ years.

View all MCP Connectors

Latest Blog Posts

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/bluedragonDC/medas_mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server