Taking longer than expected.
Reload the pageTaking longer than expected.
Reload the pageConnect Claude, ChatGPT, Cursor, and any other Model Context Protocol client directly to Areebi's compliance reference data. Read-only, JSON-RPC 2.0 over HTTPS, no authentication.
Point any MCP-aware client at the endpoint below. CORS is open, so browser-based agents work too.
https://www.areebi.com/api/mcpThe first release focuses on the compliance corpus. Vendor comparisons, glossary lookup, and blog search ship next.
list_compliance_frameworksList every AI governance and data compliance framework Areebi has mapped, with slug, title, jurisdiction, regulation type, status, last-updated date, and canonical URL.
get_compliance_frameworkGet the full structured content of a single compliance framework page by slug. Returns sections, feature mappings, compliance checklist, FAQs, related links, and how-to steps.
Hit the endpoint from any shell to verify the server is reachable and see the JSON-RPC envelopes in action.
curl -X POST https://www.areebi.com/api/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'curl -X POST https://www.areebi.com/api/mcp \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc":"2.0",
"id":2,
"method":"tools/call",
"params":{
"name":"get_compliance_framework",
"arguments":{"slug":"nist-ai-rmf"}
}
}'Add the snippet below to your Claude Desktop config file. Cursor, Continue, and other MCP-aware clients use the same shape.
~/Library/Application Support/Claude/claude_desktop_config.json{
"mcpServers": {
"areebi": {
"type": "http",
"url": "https://www.areebi.com/api/mcp"
}
}
}V3 ships with two tools to lock in the JSON-RPC envelope and discovery story. These additional tools land in subsequent W7-A pull requests.
Two well-known locations describe the server so MCP catalogs and AI agents can find it automatically.
https://www.areebi.com/.well-known/mcp.jsonGET https://www.areebi.com/api/mcp