
Regintel Mcp
- 1 repo stars
- Updated July 23, 2026
- ad0750/regintel-mcp
RegIntel MCP is a MCP server that queries RegIntel’s API for regulatory data across 41 jurisdictions and 212 regulations.
About
RegIntel MCP exposes the RegIntel API to coding agents so developers can ask structured questions about regulations and jurisdictions while shaping product scope. It suits founders validating whether a SaaS idea can legally operate in target markets, or engineers wiring compliance checks into internal tools. You install the regintel-mcp Python package, provide REGINTEL_API_KEY from RegIntel’s key page, and register stdio MCP in Claude Code or similar clients. The advertised corpus spans 41 jurisdictions and 212 regulations, giving you a bounded factual baseline for comparisons—not legal advice, but faster discovery than scattered government sites. Revisit the integration during ship security reviews when policies change or you add new regions.
- RegIntel API coverage: 41 jurisdictions and 212 regulations (per server description)
- PyPI regintel-mcp v0.2.0 with stdio MCP transport
- REGINTEL_API_KEY required; free tier mentioned at regintelapi.com/get-key
- Agent-queryable regulatory dataset instead of manual PDF hunting
- GitHub-hosted server for audit of tool behavior
Regintel Mcp by the numbers
- Data as of Jul 24, 2026 (Skillselion catalog sync)
claude mcp add --env REGINTEL_API_KEY=YOUR_REGINTEL_API_KEY regintel-mcp -- uvx regintel-mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 1 |
|---|---|
| Package | regintel-mcp |
| Transport | STDIO |
| Auth | Required |
| Last updated | July 23, 2026 |
| Repository | ad0750/regintel-mcp ↗ |
What it does
Pull structured regulatory and jurisdiction data into your agent while scoping fintech, health, or cross-border products.
Who is it for?
Best when you're scoping regulated products and already use MCP-aware coding agents.
Skip if: Organizations that need certified legal counsel outputs or offline-only compliance archives with no API key.
What you get
Your agent can fetch normalized regulatory references through MCP while you narrow scope and document compliance assumptions.
- Agent-callable RegIntel regulatory queries
- Structured jurisdiction and regulation references for scope docs
- Repeatable compliance discovery workflow in the IDE
By the numbers
- 41 jurisdictions
- 212 regulations
- Server version 0.2.0
README.md
regintel-mcp
Drop-in regulatory data for your Claude agent. Query 212+ regulations across 41 jurisdictions (GDPR, MiCA, DORA, AASB-S2, NGER, FATF, FCA, ASIC, MAS, SEC, FINRA…) with regulator citations. Works with Claude Desktop, Claude Code, and any MCP-compatible LLM client.
uvx regintel-mcp # or: pip install regintel-mcp
Smoke-test the install in 5 seconds — list_jurisdictions works without an API key. Once you confirm the package is wired into your client, get a free key (100 credits, no card, ~20 seconds): regintelapi.com/k
Tools
| Tool | What it does | Credits |
|---|---|---|
list_jurisdictions |
All 41 supported jurisdictions with codes and regulation counts | Free, no key required |
search_regulations |
Filter the catalog by jurisdiction, tag, keyword, category. Paginated. | 1 |
get_regulation |
Full record (obligations, penalties, scope, source URL) for one regulation by ID | 1 |
get_recent_updates |
Regulations added or modified since a date. Useful for incremental sync of vector stores. | free |
check_compliance |
Decision signal (allowed / requires_license / restricted / prohibited) for an activity in a country | 1 |
get_aasb_s2_obligations |
Australian AASB-S2 climate-disclosure obligations. Filterable by Group tier, category code, reporting year. Information only — does not calculate emissions or judge assurance. | 1 |
Configure with Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"regintel": {
"command": "uvx",
"args": ["regintel-mcp"],
"env": {
"REGINTEL_API_KEY": "your-api-key-here"
}
}
}
}
Restart Claude Desktop. Six tools appear under the regintel server. Ask: "is crypto trading allowed in Australia?" — the model routes that to check_compliance(country="AU", activity="crypto") on its own.
Configure with Claude Code
claude mcp add regintel -e REGINTEL_API_KEY=your-api-key-here -- uvx regintel-mcp
Try it without a key
list_jurisdictions is auth-optional — useful as a sanity check after install:
Ask Claude: "list the jurisdictions in the regintel server"
If you get back a JSON list with EU, US, AU, SG, UK and 36 others, the package is wired in. Now grab a key for the rest of the tools: regintelapi.com/k
Environment variables
REGINTEL_API_KEY(required for billed tools) — your API key. Without it,list_jurisdictionsstill works; every other tool returns an actionable signup prompt.REGINTEL_API_BASE(optional) — override the API base URL. Defaults tohttps://api.regintelapi.com.
Pricing
| Plan | Credits | Price |
|---|---|---|
| Free | 100 (one-time, no expiry) | $0, no card |
| Starter | 1,000/month | $10/month |
| Pro | 10,000/month | $50/month |
One-time credit packs also available. See regintelapi.com/pricing.
Links
- Get a free key: https://regintelapi.com/k
- API docs: https://regintelapi.com/docs.html
- OpenAPI spec: https://regintelapi.com/openapi.json
- MCP Registry listing: https://registry.modelcontextprotocol.io/v0/servers/io.github.ad0750/regintel-mcp
- Source: https://github.com/ad0750/regintel-mcp
License
MIT
Recommended MCP Servers
How it compares
Regulatory data MCP bridge, not a lawyer skill or a generic web search plugin.
FAQ
Who is RegIntel MCP for?
It is for developers and agents that need programmatic access to RegIntel regulatory entries when defining markets and compliance scope.
When should I use RegIntel MCP?
Use it during idea validation and security planning when you must list applicable jurisdictions and regulations before building integrations.
How do I add RegIntel MCP to my agent?
Obtain REGINTEL_API_KEY from RegIntel, install regintel-mcp from PyPI, and add the stdio server to your Claude Code or Cursor MCP configuration.