Tamper-evident audit trail MCP server for EU AI Act & GDPR compliance.
Tamper-evident audit trail MCP server for EU AI Act & GDPR compliance. That is what the eu audit trail mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.
Tamper-evident audit trail MCP server for EU AI Act and GDPR compliance. Designed to be integrated into a local desktop application via stdio transport.
The server publishes 10 tools. What each one is for:
log_event — Record an audit event with automatic PII scanninglog_inference — Log an LLM inference call (model, tokens, cost)log_data_access — Log a document/data access eventquery_log — Search events by time range, type, sessionget_session_trace — Full ordered trace of a sessionget_stats — Summary statistics over a time periodcompliance_check — Check against EU AI Act Art. 12/19 and GDPR Art. 30execute_erasure — GDPR Article 17 right-to-erasureget_pii_summary — Summary of detected PII types (counts only)verify_chain — Verify hash chain integrityConfiguration is passed through the environment: AUDIT_CONFIG. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
Among the database access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. EU Audit Trail's toolset — log_event, log_inference, log_data_access and 7 more — is a fair guide to whether it matches your workflow. It is maintained by jellewas; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against EU Audit Trail's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| log_event | Record an audit event with automatic PII scanning |
| log_inference | Log an LLM inference call (model, tokens, cost) |
| log_data_access | Log a document/data access event |
| query_log | Search events by time range, type, session |
| get_session_trace | Full ordered trace of a session |
| get_stats | Summary statistics over a time period |
| compliance_check | Check against EU AI Act Art. 12/19 and GDPR Art. 30 |
| execute_erasure | GDPR Article 17 right-to-erasure |
| get_pii_summary | Summary of detected PII types (counts only) |
| verify_chain | Verify hash chain integrity |
{
"mcpServers": {
"eu-audit": {
"command": "python",
"args": ["-m", "eu_audit_mcp.server"],
"env": {
"AUDIT_CONFIG": "./audit_config.yaml"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| AUDIT_CONFIG | Configuration value read at startup. | Optional |
Read-only SQL access to Postgres — let your assistant inspect schemas and answer questions from real data.
Manage your whole Supabase project in conversation — database, auth, storage, Edge Functions and branches.
Query, modify and analyse local SQLite databases in conversation — the fastest way to chat with a data file.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Official MongoDB server covering data, schemas and Atlas management — from find queries to spinning up clusters.
Serverless Postgres with database branching — point your assistant at Neon and let it work on disposable copies.