AktAI exposes an MCP (Model Context Protocol) server so AI agents and developer tools can query EU compliance data programmatically.
https://www.aktai.eu/api/mcp/v1Authorization: Bearer YOUR_API_KEY| Endpoint | https://www.aktai.eu/api/mcp/v1 |
| Protocol | JSON-RPC 2.0 over HTTP POST |
| MCP version | 2024-11-05 |
| Authentication | Bearer token (Authorization header) |
| OpenAPI spec | /api/mcp/v1/openapi.json |
| Discovery | /.well-known/mcp.json |
The initialize and tools/list methods are public — no API key required. All tools/call invocations require a valid Bearer token.
Run a compliance check for a specific regulation and country.
List all supported EU regulations (AI Act, GDPR, NIS2, ePrivacy, EAA).
List all supported EU/EEA member states.
Identify compliance gaps for your organization across regulations.
Get detailed information about a specific regulation.
Get AI literacy training quiz questions (Article 4 EU AI Act).
curl -X POST https://www.aktai.eu/api/mcp/v1 \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "list_regulations",
"arguments": {}
},
"id": 1
}'Add this to your Claude Desktop claude_desktop_config.json:
{
"mcpServers": {
"aktai-compliance": {
"url": "https://www.aktai.eu/api/mcp/v1",
"transport": "http",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Rate limits depend on your subscription tier. If you exceed the limit you will receive a JSON-RPC error with code -32000. Retry after a brief backoff.
Questions? Contact support@aktai.eu