Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI → MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt ↗ (opens in a new tab)
  • Catalog JSON ↗ (opens in a new tab)
  • Remote MCP ↗ (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) ↗ (opens in a new tab)
  • GitHub ↗ (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. ⚖️ Legal
  3. Pasal.id — Indonesian Law
P
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:47:03 PM

Pasal.id — Indonesian Law

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time — check back soon.
View RepositoryVisit Website

MCP server for Indonesian legislation — search 40,000+ regulations with citation-ready answers.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON ▾

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "pasal-id-indonesian-law": {
      "command": "npx",
      "args": [
        "-y",
        "pasal-id-indonesian-law"
      ]
    }
  }
}

💡 Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing Alternatives⚖️ More in Legal

Documentation Overview

Pasal.id — Indonesian Law MCP Server

The first open, AI-native Indonesian legal database. Gives Claude and any MCP-compatible AI assistant grounded, citation-ready access to 100,000+ Indonesian regulations — UU, PP, Perpres, PERMEN, PERDA, and 20+ other regulation types — directly from authoritative sources (peraturan.go.id, BPK JDIH, JDIH MK, JDIHN).

  • Live server: https://mcp.pasal.id/mcp
  • Transport: Streamable HTTP
  • Auth: OAuth 2.0 — free account at pasal.id
  • Setup in 30 seconds: pasal.id/hubungkan
  • License: AGPL-3.0

Why this exists

Indonesian law is scattered across dozens of government portals, each with its own PDF quirks and status ambiguities. Most LLM answers about Indonesian regulations are hallucinated — the training data is thin, and the live web isn't indexed for precise legal retrieval.

Pasal.id consolidates 100,000+ regulations into structured data (pasal-level granularity, whole-law hierarchy, preamble sections, amendment history, and legal-status provenance) and exposes it to AI assistants via MCP. Every answer an LLM gives using this server can be grounded in a specific article, regulation part, and authoritative source.

Connect

Pick your client. All use the same server URL: https://mcp.pasal.id/mcp.

Claude Code — one command

Terminal
claude mcp add --transport http pasal-id https://mcp.pasal.id/mcp

Claude Code will open a browser window for OAuth on first use. For CI/automation, use a personal access token from pasal.id/akun:

Terminal
claude mcp add --transport http pasal-id https://mcp.pasal.id/mcp \
  --header "Authorization: Bearer ${PASAL_MCP_TOKEN}"

Claude Desktop / Cursor / Windsurf / VS Code

All consume the same JSON. Paste into the relevant config file:

config.json
{
  "mcpServers": {
    "pasal-id": {
      "type": "http",
      "url": "https://mcp.pasal.id/mcp",
      "headers": {
        "Authorization": "Bearer ${PASAL_MCP_TOKEN}"
      }
    }
  }
}
ClientConfig file
Claude Desktop~/Library/Application Support/Claude/claude_desktop_config.json (macOS) · %APPDATA%\Claude\claude_desktop_config.json (Windows)
Cursor~/.cursor/mcp.json or .cursor/mcp.json (workspace)
Windsurf~/.codeium/windsurf/mcp_config.json
VS Code MCP.vscode/mcp.json (workspace)
Claude Code.mcp.json (project root)

Full per-client walkthrough: docs/clients.md.

ChatGPT Desktop (April 2026+)

Settings → Developer Tools → Add MCP Server → paste https://mcp.pasal.id/mcp.

Tools

The server exposes six task-oriented tools to AI assistants (v2.0.0 — the earlier eleven-tool surface keeps working for existing integrations but is deprecated and scheduled for removal after August 2026):

ToolPurpose
search_legalFind regulations when you do not yet know which law applies — topics, keywords, or messy citations, with validated granular filters (multiple types, year, status, issuing body, region) and diagnostics that explain zero results.
resolve_lawTurn any reference — "KUHP", "UU 13/2003", "Pergub DKI 220 tahun 2010", a pasted title — into a canonical law_id, or get disambiguation candidates instead of a guess.
get_law_contextCompact orientation on one law: summary (status, structure counts, top-level outline), a pasal-range-compressed outline, or typed relationship groups (amendments, court reviews) — token-budgeted.
read_lawRead text with forgiving selectors: pasal 27, pasal 27-30, bab III, menimbang, penjelasan pasal 5, lampiran, all — with cursors, char budgets, and explicit missing reporting.
search_court_decisionsSearch Constitutional Court (Mahkamah Konstitusi) decisions by reviewed law, lane (PUU/SKLN/PHPU/PHPKADA), ruling, year, dissent, or judge.
report_issueReport data problems; the search_failure type ("I searched X and expected law Y") feeds the search regression suite directly.

Every v2 response carries a request_id and structured diagnostics; errors are typed (error_code + recovery guidance + valid_values) so assistants can self-correct instead of retrying blindly. The canonical workflow: resolve_law when you know the law → get_law_context to orient → read_law for text; search_legal when you don't.

Schemas + example calls: docs/tools.md.

Example prompts

Once connected, ask your AI assistant questions like:

  • "Explain Pasal 81 of the UU Cipta Kerja on employment."
  • "Is the 1974 Marriage Law still in force?"
  • "What are contract workers' rights under Indonesian law?"
  • "Compare worker rights before and after the Job Creation Law."
  • "What is the minimum marriage age in Indonesia?"
  • "Tampilkan struktur UU ITE dan ambil bagian Menimbang serta Pasal 27."
  • "Cari dalam UU PDP bagian tentang pengendali data, lalu cek status peraturannya."
  • "Saya menemukan OCR yang salah di Pasal ini; laporkan koreksinya ke Pasal.id."

The assistant should search first, retrieve only the needed Pasal or regulation part, verify status/provenance when the answer depends on currency, and use report_issue when the parsed corpus has a real data problem.

About the data

  • Primary source: peraturan.go.id (Ministry of State Secretariat).
  • Secondary sources: BPK JDIH (69 regulation types), JDIH MK (Constitutional Court), JDIHN (regional regulations).
  • Verification: Gemini 3 Flash cross-checks every parsed document against the source PDF. Unverified regulations are flagged.
  • Updates: New regulations ingested within 24–48 hours of publication.
  • Gaps: See pasal.id/metodologi for known limitations.

Contributing

Pasal.id itself lives in a private repository — but this repo is public and we welcome:

  • Corrections to the public MCP surface (README, install snippets, docs).
  • Bug reports against the live server via GitHub Issues or pasal.id/masukan.
  • Feature requests — especially new MCP tools or improvements to existing ones.

PRs to the source regulations database happen through the crowd-correction workflow at pasal.id: any user can highlight a passage and suggest a fix; our team reviews and merges within days.

Related projects

  • pasal.id — web reader with full search, law detail pages, and crowd corrections.
  • pasal.id/api — REST API (same data, same authentication, for non-MCP integrations).

License

AGPL-3.0 — see LICENSE.

The MCP server code and the regulation data are both open. Attribution is appreciated; commercial derivatives must remain open-source under the same license.


Built by Aturio · Maintained by Ilham Firdausi Putra.

Related MCP Servers

View all in Legal View all alternatives
  • L
    Legal Data Hunter

    Search 18M+ legal documents worldwide — case law, legislation, and doctrine across 110+ countries.

    ⚖️ Legal0 views
    Compare vs Legal Data Hunter →
  • Contract Compass logoContract Compass

    Korean public procurement law: rule-engine rulings, statutes search, live court precedents

    ⚖️ Legal0 views
    Compare vs Contract Compass →
  • Contract Compass logoContract Compass

    Korean public procurement law: rule-engine rulings, statutes search, live court precedents

    ⚖️ Legal0 views
    Compare vs Contract Compass →
  • L
    LegalAIMCP Directory

    Search a curated directory of AI tools and MCP servers for law firms. Read-only, free, no auth.

    ⚖️ Legal1 views
    Compare vs LegalAIMCP Directory →

Frequently Asked Questions about Pasal.id — Indonesian Law

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "pasal-id-indonesian-law": { "command": "npx", "args": ["-y", "Pasal.id — Indonesian Law"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewPasal.id — Indonesian Law AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/pasal-id-indonesian-law?style=directory)](https://allmcps.com/mcp/pasal-id-indonesian-law)
HTML Embed
<a href="https://allmcps.com/mcp/pasal-id-indonesian-law"><img src="https://allmcps.com/api/badge/pasal-id-indonesian-law?style=directory" alt="Pasal.id — Indonesian Law on AllMCPs" /></a>

Technical Specs & Signals

Category⚖️Legal
More technical detailsExpand ▾
TransportSTDIO
RuntimeNode.js
0/5 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging · 27/100How this signal is calculated ▾
Server availabilityNot measured

Not scored for repo-hosted servers — we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data — not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

★ Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge — we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in ⚖️ Legal →Best MCP servers for Legal →Alternatives to Pasal.id — Indonesian Law →Install in Claude DesktopInstall in CursorInstall in VS Code