MCP API — Connect Your AI
LiveThe Web3 Compliance AI MCP server provides real-time crypto regulatory intelligence directly to your AI assistant via the Model Context Protocol. Connect Claude, Cursor, or any MCP-compatible client to query compliance data programmatically.
Quick Start — Claude Code
claude mcp add web3-compliance --transport http https://mcp.web3compliance.ai/mcp Verify with: claude mcp list
Claude Desktop
Claude Desktop connects to remote MCP servers through the web interface, not via claude_desktop_config.json.
- Visit claude.ai/customize/connectors
- Click Add Connector
- Enter server URL:
https://mcp.web3compliance.ai/mcp - Transport is auto-detected as Streamable HTTP
- Save and verify tools appear in the sidebar
Remote servers must be added through the web UI. Configuring remote URLs directly in claude_desktop_config.json will not work.
Cursor
Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json in your project root:
{
"mcpServers": {
"web3-compliance": {
"url": "https://mcp.web3compliance.ai/mcp"
}
}
} If your Cursor version does not yet support Streamable HTTP natively, use the mcp-remote proxy:
{
"mcpServers": {
"web3-compliance": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.web3compliance.ai/mcp"
]
}
}
} MCP Inspector — Interactive Testing
The MCP Inspector provides a browser-based UI for testing all tools and resources interactively.
npx @modelcontextprotocol/inspector - Open the browser UI (URL printed in terminal, typically
http://localhost:6274) - Select transport: Streamable HTTP
- Enter URL:
https://mcp.web3compliance.ai/mcp - Click Connect
- Use the Tools tab to invoke any of the 7 tools
- Use the Resources tab to read any of the 10 resources
For local development:
# Terminal 1: Start local MCP server
cd worker-mcp && npx wrangler dev
# Terminal 2: Launch inspector and connect to http://localhost:8787/mcp
npx @modelcontextprotocol/inspector Available Tools (7)
compliance_by_country Get the full regulatory profile for a specific country including licensing requirements, regulatory bodies, travel rule status, and tax reporting
search_regulations Full-text search across countries, regulatory frameworks, and intelligence items
framework_guide Get detailed guide for a specific regulatory framework including requirements, scope, and effective dates
recent_updates Get the latest regulatory intelligence updates, filtered by recency, region, category, and impact level
compare_jurisdictions Side-by-side comparison of two jurisdictions across regulatory dimensions including licensing, custody, tax, and travel rule
licensing_requirements Get specific licensing requirements for a given crypto business activity in a jurisdiction
compliance_checklist Generate a step-by-step compliance checklist for launching a specific type of crypto service in a jurisdiction
Resources (10)
compliance://countries List of all tracked jurisdictions with summary status
compliance://countries/{code} Full regulatory profile for a specific country
compliance://frameworks List of all tracked regulatory frameworks
compliance://frameworks/{slug} Full detail for a specific regulatory framework
compliance://toolkit All compliance program components (AML, KYC, monitoring, sanctions, risk)
compliance://toolkit/{slug} Detailed view of a single compliance program component
compliance://glossary Glossary of 27 crypto compliance terms with definitions
compliance://updates/latest The 50 most recent regulatory updates
compliance://updates/{country} Regulatory updates filtered by country code
compliance://updates/enforcement Enforcement actions and penalties
Example Queries
Once connected, ask your AI assistant questions like these:
| Question | Tool Invoked |
|---|---|
| What are the crypto regulations in Singapore? | compliance_by_country |
| Which countries require VASP licensing? | search_regulations |
| Explain the MiCA requirements | framework_guide |
| What crypto regulations changed this month? | recent_updates |
| Compare US vs EU crypto regulations | compare_jurisdictions |
| What license do I need to run an exchange in Dubai? | licensing_requirements |
| Generate a compliance checklist for a custody service in the UK | compliance_checklist |
Machine-Readable Spec & Discovery
MCP Spec
Full JSON spec describing all tools, resources, and input schemas. Downloadable for offline use or import into Postman/Insomnia.
/specAuto-Discovery
Server Card for MCP-aware clients to auto-discover and auto-configure this server.
/.well-known/mcp.json