Skip to main content

MCP Server for BMKG Indonesia - Weather, Earthquake, and Region Data for AI Assistants

Project description

BMKG API

Docker Python 3.12+ FastAPI License: MIT

English | Bahasa Indonesia


๐Ÿ‡ฌ๐Ÿ‡ง English

Free REST API for Indonesian weather forecasts, earthquake data, weather warnings, and region lookup from BMKG.

๐ŸŒ Demo: https://bmkg-restapi.vercel.app

โš ๏ธ Important Notice

This is a demo/public instance with rate limits (30 requests/minute) to ensure fair usage.

For production use with unlimited requests, please self-host.

Features

  • ๐ŸŒ Earthquake Data โ€” Latest, recent (M 5.0+), felt earthquakes, nearby search by coordinates
  • ๐ŸŒค๏ธ Weather Forecast โ€” 3-day forecasts & current weather for any kelurahan/desa in Indonesia
  • โš ๏ธ Weather Warnings (Nowcast) โ€” Real-time severe weather alerts with affected area polygons
  • ๐Ÿ“ Region Lookup โ€” Indonesian provinces, districts, subdistricts, villages, plus search
  • ๐Ÿ“Š Auto-generated Docs โ€” Interactive API documentation at /docs
  • โšก Caching โ€” Fast responses with in-memory cache (configurable TTL)
  • ๐ŸŒ CORS Enabled โ€” Use from any frontend
  • ๐Ÿ”“ No API Key Required โ€” Simple, anonymous access
  • ๐Ÿ“ˆ Rate Limit Headers โ€” X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset on every response
  • ๐Ÿณ Docker & GHCR โ€” Automated multi-arch Docker images published to GitHub Container Registry
  • ๐Ÿค– MCP Server โ€” Model Context Protocol for AI assistants (Claude, Cursor, etc.)

Quick Start

# Latest earthquake
curl https://bmkg-restapi.vercel.app/v1/earthquake/latest

# Weather forecast for Pejaten Barat, Pasar Minggu, Jakarta Selatan
curl https://bmkg-restapi.vercel.app/v1/weather/31.74.04.1006

# Current weather
curl https://bmkg-restapi.vercel.app/v1/weather/31.74.04.1006/current

# Active weather warnings
curl https://bmkg-restapi.vercel.app/v1/nowcast

# Search regions
curl https://bmkg-restapi.vercel.app/v1/wilayah/search?q=tebet

API Endpoints

๐ŸŒ Earthquake

Endpoint Description
GET /v1/earthquake/latest Latest earthquake
GET /v1/earthquake/recent Recent earthquakes (M 5.0+)
GET /v1/earthquake/felt Felt earthquakes
GET /v1/earthquake/nearby?lat=&lon=&radius_km= Nearby earthquakes

๐ŸŒค๏ธ Weather

Endpoint Description
GET /v1/weather/{adm4_code} 3-day forecast for a kelurahan/desa
GET /v1/weather/{adm4_code}/current Current weather for a kelurahan/desa

โš ๏ธ Nowcast (Weather Warnings)

Endpoint Description
GET /v1/nowcast Active weather warnings by province
GET /v1/nowcast/{alert_code} Warning detail with affected area polygons
GET /v1/nowcast/check?location= Check warnings for a specific location

๐Ÿ“ Wilayah (Region)

Endpoint Description
GET /v1/wilayah/provinces List provinces
GET /v1/wilayah/districts?province_code= List districts
GET /v1/wilayah/subdistricts?district_code= List subdistricts
GET /v1/wilayah/villages?subdistrict_code= List villages
GET /v1/wilayah/search?q={query} Search regions

Full documentation: https://bmkg-restapi.vercel.app/docs

๐Ÿค– MCP Server (for AI Assistants)

Use BMKG data directly in Claude Desktop, Cursor, VS Code, and other MCP-compatible AI assistants.

# Install MCP server
pipx install bmkg-api-mcp

Available Tools:

Tool Description
get_latest_earthquake Latest earthquake data
get_weather_forecast 3-day weather forecast
get_weather_warnings Weather warnings (nowcast)
search_regions Search Indonesian regions

Setup Guides: See MCP_SETUP.md for detailed configuration for Claude Desktop, Cursor, VS Code, and more.

Example prompts:

  • "Gempa terbaru di Indonesia?"
  • "Cuaca 3 hari ke depan di Jakarta Selatan?"
  • "Cari kode wilayah untuk Tebet"

Self-Hosting

Option 1: Docker (Recommended)

# Pull from GitHub Container Registry
docker pull ghcr.io/dhanyyudi/bmkg-api:latest

# Or build and run with Docker Compose
git clone https://github.com/dhanyyudi/bmkg-api.git
cd bmkg-api
docker-compose up -d

Option 2: Local Development

git clone https://github.com/dhanyyudi/bmkg-api.git
cd bmkg-api
make setup
source venv/bin/activate
make dev     # starts server on http://localhost:8099

Option 3: Vercel (Serverless)

Deploy to Vercel with one click โ€” the api/index.py and vercel.json are pre-configured.

See Self-Hosting Guide for detailed instructions.

Code Examples

Available on the landing page for: cURL, JavaScript, Python, Go, PHP, Ruby, and Dart (Flutter).


๐Ÿ‡ฎ๐Ÿ‡ฉ Bahasa Indonesia

API REST gratis untuk prakiraan cuaca, data gempa bumi, peringatan cuaca, dan pencarian wilayah Indonesia dari BMKG.

๐ŸŒ Demo: https://bmkg-restapi.vercel.app

โš ๏ธ Pemberitahuan Penting

Ini adalah instance demo/publik dengan batasan rate limit (30 request/menit).

Untuk penggunaan produksi dengan request tanpa batas, silakan self-host.

Fitur

  • ๐ŸŒ Data Gempa โ€” Gempa terbaru, terkini (M 5.0+), dirasakan, pencarian radius
  • ๐ŸŒค๏ธ Prakiraan Cuaca โ€” 3 hari & cuaca saat ini untuk lokasi mana pun di Indonesia
  • โš ๏ธ Peringatan Cuaca (Nowcast) โ€” Peringatan dini real-time dengan poligon area terdampak
  • ๐Ÿ“ Pencarian Wilayah โ€” Provinsi, kabupaten, kecamatan, desa, plus pencarian
  • ๐Ÿ“Š Dokumentasi Auto โ€” Dokumentasi API interaktif di /docs
  • โšก Caching โ€” Response cepat dengan cache lokal (TTL bisa dikonfigurasi)
  • ๐ŸŒ CORS Enabled โ€” Bisa dipakai dari frontend mana saja
  • ๐Ÿ”“ Tanpa API Key โ€” Akses sederhana dan anonim
  • ๐Ÿ“ˆ Rate Limit Headers โ€” X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset di setiap response
  • ๐Ÿณ Docker & GHCR โ€” Image Docker multi-arsitektur otomatis di GitHub Container Registry
  • ๐Ÿค– MCP Server โ€” Model Context Protocol untuk AI assistants (Claude, Cursor, dll)

Cepat Mulai

# Gempa terbaru
curl https://bmkg-restapi.vercel.app/v1/earthquake/latest

# Prakiraan cuaca Pejaten Barat, Pasar Minggu, Jakarta Selatan
curl https://bmkg-restapi.vercel.app/v1/weather/31.74.04.1006

# Cuaca saat ini
curl https://bmkg-restapi.vercel.app/v1/weather/31.74.04.1006/current

# Peringatan cuaca aktif
curl https://bmkg-restapi.vercel.app/v1/nowcast

# Cari wilayah
curl https://bmkg-restapi.vercel.app/v1/wilayah/search?q=wiradesa

Endpoint API

๐ŸŒ Gempa Bumi

Endpoint Deskripsi
GET /v1/earthquake/latest Gempa terbaru
GET /v1/earthquake/recent Gempa terkini (M 5.0+)
GET /v1/earthquake/felt Gempa dirasakan
GET /v1/earthquake/nearby?lat=&lon=&radius_km= Gempa terdekat

๐ŸŒค๏ธ Cuaca

Endpoint Deskripsi
GET /v1/weather/{adm4_code} Prakiraan 3 hari
GET /v1/weather/{adm4_code}/current Cuaca saat ini

โš ๏ธ Nowcast (Peringatan Cuaca)

Endpoint Deskripsi
GET /v1/nowcast Peringatan cuaca aktif per provinsi
GET /v1/nowcast/{alert_code} Detail peringatan dengan poligon area
GET /v1/nowcast/check?location= Cek peringatan untuk lokasi tertentu

๐Ÿ“ Wilayah

Endpoint Deskripsi
GET /v1/wilayah/provinces Daftar provinsi
GET /v1/wilayah/districts?province_code= Daftar kabupaten/kota
GET /v1/wilayah/subdistricts?district_code= Daftar kecamatan
GET /v1/wilayah/villages?subdistrict_code= Daftar desa/kelurahan
GET /v1/wilayah/search?q={query} Cari wilayah

Dokumentasi lengkap: https://bmkg-restapi.vercel.app/docs

๐Ÿค– MCP Server (untuk AI Assistants)

Gunakan data BMKG langsung di Claude Desktop, Cursor, VS Code, dan AI assistants lain yang kompatibel dengan MCP.

# Install MCP server
pipx install bmkg-api-mcp

Tools Tersedia:

Tool Deskripsi
get_latest_earthquake Data gempa terbaru
get_weather_forecast Prakiraan cuaca 3 hari
get_weather_warnings Peringatan cuaca (nowcast)
search_regions Cari wilayah Indonesia

Panduan Setup: Lihat MCP_SETUP.md untuk konfigurasi detail untuk Claude Desktop, Cursor, VS Code, dan lainnya.

Contoh prompt:

  • "Gempa terbaru di Indonesia?"
  • "Cuaca 3 hari ke depan di Jakarta Selatan?"
  • "Cari kode wilayah untuk Tebet"

Self-Hosting

Opsi 1: Docker (Direkomendasikan)

# Pull dari GitHub Container Registry
docker pull ghcr.io/dhanyyudi/bmkg-api:latest

# Atau build dan jalankan dengan Docker Compose
git clone https://github.com/dhanyyudi/bmkg-api.git
cd bmkg-api
docker-compose up -d

Opsi 2: Lokal

git clone https://github.com/dhanyyudi/bmkg-api.git
cd bmkg-api
make setup
source venv/bin/activate
make dev     # jalankan server di http://localhost:8099

Opsi 3: Vercel (Serverless)

Deploy ke Vercel โ€” api/index.py dan vercel.json sudah dikonfigurasi.

Lihat Panduan Self-Hosting untuk detail.

Contoh Kode

Tersedia di halaman utama untuk: cURL, JavaScript, Python, Go, PHP, Ruby, dan Dart (Flutter).


Data Source

All data is sourced from BMKG (Badan Meteorologi, Klimatologi, dan Geofisika).

Attribution

This API is not affiliated with BMKG. All data belongs to BMKG.

License

MIT License โ€” see LICENSE


Built with โค๏ธ by dhanypedia

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bmkg_api_mcp-1.0.0.tar.gz (55.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bmkg_api_mcp-1.0.0-py3-none-any.whl (59.1 kB view details)

Uploaded Python 3

File details

Details for the file bmkg_api_mcp-1.0.0.tar.gz.

File metadata

  • Download URL: bmkg_api_mcp-1.0.0.tar.gz
  • Upload date:
  • Size: 55.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for bmkg_api_mcp-1.0.0.tar.gz
Algorithm Hash digest
SHA256 aed294108398a564d6cc97b7701472eb5b2c87dc889eb0f4b652979b34ab6fa0
MD5 85764831de52c3ad06e79678776317cb
BLAKE2b-256 bd4b954566777ee4f55320bae14214e003aeed4253dd64e695afad5159c61034

See more details on using hashes here.

File details

Details for the file bmkg_api_mcp-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: bmkg_api_mcp-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 59.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for bmkg_api_mcp-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ac95dc2d54384b2877bca6c28080805b5634de3945475adecca4bafcf35deaf3
MD5 81a94e3b8a7ce592792f4be7afa282ed
BLAKE2b-256 cdcb72b5c84d62aa17b7a182918103c979a29f778cb53a1d44514accc76338b3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page