Skip to main content
Glama

mcp-eu-compliance

MCP server exposing an offline corpus of EU law (EUR-Lex, full text) in local SQLite FTS5, with compliance tools. Snippets returned verbatim from the database (zero-LLM) - each with a CELEX id and EUR-Lex URL. Anti-hallucination by mechanism, not by trust in the model.

Scope (14 regulations, digital/data/cyber): GDPR, AI Act, DORA, NIS2, eIDAS 2.0, CRA, DSA, DMA, Data Act, DGA, LED, ePrivacy, Cybersecurity Act, CER.

Complementary to mcp-eu-sparql: that one discovers acts live (SPARQL Cellar), this one provides verbatim text + offline compliance analysis (no network at runtime).

Installation

npm install            # Node 22.5+ (node:sqlite built-in)
npm run fetch-corpus   # downloads regulations.db (~36 MB) from Ansvar (Apache-2.0)
npm run build
npm start

Configuration in the MCP client (e.g. mcp-servers.json):

{
  "name": "eu-compliance",
  "command": "node",
  "args": ["/path/to/mcp-eu-compliance/dist/index.js"]
}

Related MCP server: astra-knowledge-base-mcp

Tools

Tool

Description

eu_search(query, regulations?, limit?)

Full-text (FTS5) across articles, verbatim snippets.

eu_article(regulation, article_number)

Full article text + title + chapter + CELEX.

eu_compare(query, regulations?)

The same topic across several regulations at once (e.g. incident reporting DORA vs NIS2 vs CRA).

eu_check_applicability(sector, subsector?)

Which of the 14 regulations apply to a sector, with confidence level and basis article.

eu_evidence(regulation, article?)

Evidence artifacts (audit) - which document/log/certificate proves compliance.

Each tool returns structuredContent.citations (regulation, CELEX, EUR-Lex URL, snapshot).

Examples

  • "Compare incident reporting timelines across DORA, NIS2, and CRA" -> eu_compare

  • "What does GDPR Article 33 require?" -> eu_article

  • "Which EU regulations apply to a bank?" -> eu_check_applicability(sector=financial, subsector=bank)

  • "What audit evidence does DORA Article 17 require?" -> eu_evidence

Disclaimers

  • Snapshot, not the authentic source. The authentic version = Official Journal of the EU. The connector returns a point-in-time snapshot; verify currency in EUR-Lex (CELEX). Freshness -> mcp-eu-sparql (live).

  • Applicability rules are expert guidance, not a binding legal assessment. Sector-specific realities may require your own analysis.

  • Reference material, not legal advice.

License and attribution

Citation: MateMatic Solutions (2026), mcp-eu-compliance, https://github.com/matematicsolutions/mcp-eu-compliance, MIT.

Available Tools

5 tools
eu_articleA
Read-onlyIdempotent

Pelny tekst artykulu (verbatim) po identyfikatorze regulacji i numerze artykulu, wraz z tytulem i rozdzialem. Bledy: out_of_scope (regulacja poza 6 ICP), missing_arg (brak article_number), not_found (artykul/regulacja nie ma w snapshot).

ParametersJSON Schema
NameRequiredDescriptionDefault
regulationYes
article_numberYesNumer artykulu, np. '33' (GDPR), '6' (AI Act).

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, indicating a safe read operation. The description adds value by listing specific error scenarios (out_of_scope, missing_arg, not_found) and clarifying that the tool returns title and chapter in addition to the article text.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that clearly states the tool's purpose and return values, followed by a list of possible errors. It is concise and front-loaded with essential information, with no unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple retrieval tool with two parameters and no output schema, the description covers purpose, return content (full text, title, chapter), and error scenarios. It could be improved by describing the output format or structure, but the given information is sufficient for an agent to use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 50% (article_number has a description, regulation only has an enum). The description reiterates that parameters are regulation identifier and article number but does not add new semantic details beyond what the schema provides. No explanation of the regulation enum values.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves the full verbatim text of an article along with its title and chapter, given a regulation and article number. It distinguishes itself from sibling tools like eu_search by specifying it returns the exact text, not search results.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context through error messages (e.g., 'out_of_scope' for regulations not in the 6 ICP list), but it does not explicitly state when to use this tool versus alternatives like eu_search or eu_compare. No direct guidance on when-not-to-use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

eu_check_applicabilityA
Read-onlyIdempotent

Ktore z 6 regulacji UE dotycza danego sektora (i opcjonalnie podsektora). Zwraca reguly stosowalnosci z poziomem pewnosci i artykulem-podstawa. To wskazowka ekspercka, nie wiazaca ocena prawna. Bledy: missing_arg (brak sector), corpus_error.

ParametersJSON Schema
NameRequiredDescriptionDefault
sectorYes
subsectorNoOpcjonalny podsektor (np. 'bank', 'insurance').

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare `readOnlyHint=true`, `destructiveHint=false`, `idempotentHint=true`, indicating safe, non-destructive, repeatable behavior. The description adds value by clarifying that results include confidence levels and article bases, emphasizes the non-binding expert nature, and documents specific error types. This contextualizes the tool's output and limitations beyond what annotations provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise (three sentences) and well-structured: first sentence states purpose and scope, second describes output, third adds caveat and errors. Each sentence is necessary and provides distinct information with no redundancy. The Polish language is appropriate for the tool's likely audience.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (2 parameters, no output schema, rich annotations), the description covers all essential aspects: what it does, what it returns, its non-binding nature, and error cases. The output description ('rules, confidence level, article basis') is sufficient without an explicit output schema. The tool's role among siblings is clear from the purpose.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 50% (sector is well-defined with enum, subsector has a brief description). The description adds meaning by mentioning '6 EU regulations' as the context for sector selection, and by stating the output includes applicability rules and confidence. It also notes errors. This enriches understanding beyond the schema alone, though it does not detail parameter formats or constraints.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly specifies the tool's purpose: checking which of 6 EU regulations apply to a given sector and optional subsector. It details output (applicability rules with confidence level and article basis) and distinguishes it from sibling tools (eu_article, eu_compare, eu_evidence, eu_search) by focusing on regulation applicability rather than article details, comparisons, evidence, or general search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides partial guidance: it states the tool returns an expert hint, not a binding legal assessment, and lists possible errors (`missing_arg`, `corpus_error`). However, it does not explicitly instruct when to use this tool versus its siblings (e.g., when to prefer `eu_article` or `eu_search`). The usage context is implied but not sharply defined.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

eu_compareA
Read-onlyIdempotent

Porownanie tego samego zagadnienia w kilku regulacjach naraz. Dla kazdej regulacji zwraca najlepiej pasujacy artykul (snippet verbatim). Np. obowiazek zgloszenia incydentu w DORA vs NIS2 vs CRA. Bledy: empty_query, corpus_error.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesZagadnienie do porownania.
regulationsNoRegulacje do porownania (min. 2). Brak = wszystkie 6.

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate read-only, idempotent behavior. Description adds that it returns verbatim snippets and lists possible errors (empty_query, corpus_error), adding value beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences plus an example and error list. Every sentence adds value, front-loaded with purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema, but description adequately explains return format (best matching article snippet) and errors. Given parameter count and sibling tools, it is complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%. Description explains that 'regulations' parameter defaults to all six if omitted and requires min 2, and 'query' is the issue to compare. This adds critical usage context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it compares an issue across multiple regulations and returns the best matching article snippet. It distinguishes from siblings like eu_article and eu_search by focusing on comparative analysis.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description specifies when to use it (comparing same issue across regulations) and provides an example. It does not explicitly exclude alternatives, but the sibling context makes it clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

eu_evidenceA
Read-onlyIdempotent

Artefakty dowodowe (audit) wymagane przez regulacje - jaki dokument/log/certyfikat udowadnia zgodnosc, dla jakiego artykulu, z pytaniami audytora. Opcjonalnie zawezone do jednego artykulu. Bledy: out_of_scope, corpus_error.

ParametersJSON Schema
NameRequiredDescriptionDefault
articleNoOpcjonalny numer artykulu do zawezenia.
regulationYes

TDQS

A3.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate read-only, idempotent, non-destructive behavior. The description adds transparency by listing possible errors (`out_of_scope`, `corpus_error`), which helps agents anticipate failure modes. No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise (two sentences) and front-loaded with the core purpose. It includes optional narrowing and error information without unnecessary detail. Could benefit from separating errors into a dedicated section.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the absence of an output schema, the description explains what the tool retrieves (evidence artifacts with auditor questions) but does not describe the structure of the response. It mentions errors, which adds completeness. Annotations fill some gaps, but more detail on return format would improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 50% (only 'article' has a description). The tool description adds meaning: it explains that the tool returns evidence 'for which article' and that narrowing to one article is optional. For 'regulation', it implies selection of regulation but lacks explicit parameter semantics beyond the enum.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that this tool returns evidence artifacts required by regulations, optionally filtered by article. It distinguishes from siblings by specifying audit-related content and mentioning possible errors. However, it could be more explicit about listing evidence items.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies that the tool is used to retrieve evidence artifacts for a regulation, but it does not explicitly state when to use it versus siblings like eu_article or eu_search. No exclusion criteria or alternatives are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 5 tool updatesv0.2.0
    • First observedeu_article
    • First observedeu_check_applicability
    • First observedeu_compare
    • First observedeu_evidence
    • First observedeu_search

TDQS

A4.1/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: eu_article retrieves a specific article by ID, eu_check_applicability determines which regulations apply to a sector, eu_compare compares topics across regulations, eu_evidence provides audit evidence, and eu_search performs full-text search. There is no ambiguity between them.

Naming Consistency4/5

All tools use the 'eu_' prefix, but the second part mixes verb and noun forms (e.g., eu_article vs eu_check_applicability). While readable and predictable, the pattern is not perfectly consistent, which lowers the score slightly.

Tool Count5/5

With 5 tools, the server is well-scoped for its purpose of querying EU compliance regulations. Each tool provides essential functionality without redundancy or unnecessary bloat.

Completeness4/5

The tool set covers key operations: retrieving articles, checking applicability, comparing regulations, obtaining evidence, and searching. Missing a tool to list all articles by regulation, but that can be approximated via search. Minor gap, but overall coverage is solid.

Maintenance

ActivitySlowing
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Local-first RAG indexing and semantic search MCP server. Enables document retrieval and context-aware queries using local embedding models.
    3
    6 npm
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    MCP server that grounds AI answers in a local, maintained knowledge base and optionally fills gaps from the web, fully local with SQLite.
    AGPL 3.0