Skip to content

Latest commit

ย 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
ย 
ย 

README.md

MCP Servers for Indonesian Data

Model Context Protocol (MCP) servers provide structured tool access for AI assistants like Claude, making it easy to query data sources via natural language.

Available MCP Servers

๐Ÿ‡ฎ๐Ÿ‡ฉ pasal.id โ€” Indonesian Law & Regulation (third-party)

The first open, AI-native Indonesian legal platform. 40,143 regulations and 937,155 pasal (articles) structured by article and clause.

GitHub: ilhamfp/pasal URL: https://pasal-mcp-server-production.up.railway.app/mcp

Setup (Claude Desktop)

{
  "mcpServers": {
    "pasal-id": {
      "command": "npx",
      "args": ["-y", "@anthropic-ai/mcp-proxy", "https://pasal-mcp-server-production.up.railway.app/mcp"]
    }
  }
}

Setup (Claude CLI)

claude mcp add --transport http pasal-id https://pasal-mcp-server-production.up.railway.app/mcp

Available Tools

Tool Description
search_laws Full-text search across 40K+ regulations
get_pasal Get specific article/clause by reference
get_law_status Check if a regulation is still active/amended/revoked
get_law_content Get full text of a regulation

Example Queries

  • "What does UU Perlindungan Data Pribadi say about consent?"
  • "Is PP 71/2019 still active?"
  • "Find regulations about halal certification"

Reference: Similar Projects

Project Country Data Sources GitHub
us-gov-open-data-mcp ๐Ÿ‡บ๐Ÿ‡ธ USA 39 APIs, 219 tools (Treasury, FRED, Congress, FDA, CDC) lzinga/us-gov-open-data-mcp
agrobr-mcp ๐Ÿ‡ง๐Ÿ‡ท Brazil Agricultural data (CEPEA, CONAB, IBGE, INPE, B3) bruno-portfolio/agrobr-mcp

MCP Server Opportunities

These Indonesian data sources from this repo are good candidates for MCP server implementation:

Source Why Difficulty
BPS Statistics REST API already exists, just needs MCP wrapper Easy
BMKG Weather/Earthquake Real-time JSON feeds, no auth Easy
BPJPH Halal JSON API, high public interest Easy
BPOM Product Safety High public interest, needs CSRF handling Medium
OJK Alert List High value for fraud prevention Medium
InaRisk Disaster REST API with coordinate-based queries Easy
data.go.id (CKAN) Standard CKAN API, broad dataset coverage Easy

Building MCP servers for these would make Indonesian government data accessible through any MCP-compatible AI assistant.