Skip to main content
Glama
Ansvar-Systems

Slovak Data Protection MCP

Slovak Data Protection MCP

▶ Try this MCP instantly via Ansvar Gateway

50 free queries/day · no card required · OAuth signup at ansvar.eu/gateway

One endpoint, one OAuth signup, access from any MCP-compatible client.

Connect

Claude Code (one line):

claude mcp add ansvar --transport http https://gateway.ansvar.eu/mcp

Claude Desktop / Cursor — add to claude_desktop_config.json (or mcp.json):

{
  "mcpServers": {
    "ansvar": {
      "type": "url",
      "url": "https://gateway.ansvar.eu/mcp"
    }
  }
}

Claude.ai — Settings → Connectors → Add custom connector → paste https://gateway.ansvar.eu/mcp

First request opens an OAuth flow at ansvar.eu/gateway. After signup, your client is bound to your account; tier (free / premium / team / company) determines fan-out, quota, and which downstream MCPs are reachable.


Self-host this MCP

You can also clone this repo and build the corpus yourself. The schema, fetcher, and tool implementations all live here. What is not in the repo is the pre-built database — TDM and standards-licensing constraints on the upstream sources mean we host the corpus on Ansvar infrastructure rather than redistribute it as a public artifact.

Build your own: run this repo's ingestion script (entry-point varies per repo — typically scripts/ingest.sh, npm run ingest, or make ingest; check the repo root).

Slovak data protection data for AI compliance tools.

License CI

Query Slovak data protection data -- regulations, decisions, and requirements from UOOU SR (Office for Personal Data Protection of the Slovak Republic) -- directly from Claude, Cursor, or any MCP-compatible client.

Built by Ansvar Systems -- Stockholm, Sweden


Related MCP server: Swedish Data Protection MCP

Available Tools (6)

Tool

Description

sk_dp_search_decisions

Full-text search across ÚOOÚ SR decisions (rozhodnutia, pokuty, upozornenia). Returns matching decisions with referen...

sk_dp_get_decision

Get a specific ÚOOÚ SR decision by reference number (e.g.,

sk_dp_search_guidelines

Search ÚOOÚ SR guidance documents: usmernenia, stanoviská, and metodické pokyny. Covers GDPR implementation, posúdeni...

sk_dp_get_guideline

Get a specific ÚOOÚ SR guidance document by its database ID.

sk_dp_list_topics

List all covered data protection topics with Slovak and English names. Use topic IDs to filter decisions and guidelines.

sk_dp_about

Return metadata about this MCP server: version, data source, coverage, and tool list.

All tools return structured data with source references and timestamps.


Data Sources and Freshness

All content is sourced from official Slovak regulatory publications:

  • UOOU SR (Office for Personal Data Protection of the Slovak Republic) -- Official regulatory authority

Data Currency

  • Database updates are periodic and may lag official publications

  • Freshness checks run via GitHub Actions workflows

  • Last-updated timestamps in tool responses indicate data age

See sources.yml for full provenance metadata.


Security

This project uses multiple layers of automated security scanning:

Scanner

What It Does

Schedule

CodeQL

Static analysis for security vulnerabilities

Weekly + PRs

Semgrep

SAST scanning (OWASP top 10, secrets, TypeScript)

Every push

Gitleaks

Secret detection across git history

Every push

Trivy

CVE scanning on filesystem and npm dependencies

Daily

Docker Security

Container image scanning + SBOM generation

Daily

Socket.dev

Supply chain attack detection

PRs

Dependabot

Automated dependency updates

Weekly

See SECURITY.md for the full policy and vulnerability reporting.


Important Disclaimers

Not Regulatory Advice

THIS TOOL IS NOT REGULATORY OR LEGAL ADVICE

Regulatory data is sourced from official publications by UOOU SR (Office for Personal Data Protection of the Slovak Republic). However:

  • This is a research tool, not a substitute for professional regulatory counsel

  • Verify all references against primary sources before making compliance decisions

  • Coverage may be incomplete -- do not rely solely on this for regulatory research

Before using professionally, read: DISCLAIMER.md | PRIVACY.md

Confidentiality

Queries go through the Claude API. For privileged or confidential matters, use on-premise deployment. See PRIVACY.md for details.


Development

Setup

git clone https://github.com/Ansvar-Systems/slovak-data-protection-mcp
cd slovak-data-protection-mcp
npm install
npm run build
npm test

Running Locally

npm run dev                                       # Start MCP server
npx @anthropic/mcp-inspector node dist/index.js   # Test with MCP Inspector

Data Management

npm run build:db       # Rebuild SQLite database from seed data
npm run check-updates  # Check for new regulatory data

More Ansvar MCPs

Full fleet at ansvar.eu/gateway.

Contributing

Contributions welcome! See CONTRIBUTING.md for guidelines.


License

Apache License 2.0. See LICENSE for details.

Data Licenses

Regulatory data sourced from official government publications. See sources.yml for per-source licensing details.


About Ansvar Systems

We build AI-powered compliance and legal research tools for the European market. Our MCP fleet provides structured, verified regulatory data to AI assistants -- so compliance professionals can work with accurate sources instead of guessing.

ansvar.eu -- Stockholm, Sweden


Available Tools

6 tools
sk_dp_aboutA

Return metadata about this MCP server: version, data source, coverage, and tool list.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description clearly states the tool's output and behavior. It is a read-only metadata operation with no side effects disclosed, which is appropriate for its simple nature.

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, well-structured sentence that front-loads the core purpose and lists the included metadata elements without waste.

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?

For a simple metadata tool with no parameters and no output schema, the description fully covers what the tool does and what it returns. It is adequately complete.

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?

The tool has zero parameters, so the schema coverage is 100%. The description adds no parameter details because none exist, but the baseline for 0 params is 4.

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's function: returning metadata about the MCP server, including version, data source, coverage, and tool list. This distinguishes it from sibling tools that handle decisions or guidelines.

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 purpose is self-evident as a server info tool, and the context implies when it would be used. However, it does not explicitly mention alternatives or exclusions, though none are really needed.

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

sk_dp_get_decisionA

Get a specific ÚOOÚ SR decision by reference number (e.g., 'UOOU-2021-1234', '00946/2022').

ParametersJSON Schema
NameRequiredDescriptionDefault
referenceYesÚOOÚ SR decision reference (e.g., 'UOOU-2021-1234', '00946/2022')

TDQS

A3.8/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full burden of behavioral disclosure. It only states the action ('Get') without elaborating on whether this is read-only, what happens if the reference is not found, or what the return value contains (e.g., full text vs. metadata). This lack of context is a significant gap for a tool with zero annotation coverage.

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, front-loaded sentence that states the verb, resource, and the key identifier type, followed by examples. There is no wasted wording, making it highly efficient and clear.

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 tool with one well-documented parameter and no output schema, the description provides the core purpose and parameter format. However, it lacks explicit usage guidance vs. siblings and does not describe the return value, which would be expected when no output schema exists. The description is adequate but not fully complete.

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?

The schema description for the 'reference' parameter already provides the same examples given in the tool description, so the description adds no additional value beyond the schema. With 100% schema coverage, the baseline of 3 is appropriate.

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 gets a specific ÚOOÚ SR decision by reference number, with concrete examples ('UOOU-2021-1234', '00946/2022'). This distinguishes it from sibling tools like search_decisions (which presumably searches) and get_guideline (different resource).

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 implies usage when you have a specific reference number, providing clear context. However, it does not explicitly mention alternatives or when not to use this tool, such as pointing to sk_dp_search_decisions when the reference is unknown. The sibling names help, but the description itself offers no exclusions.

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

sk_dp_get_guidelineA

Get a specific ÚOOÚ SR guidance document by its database ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesGuideline database ID (from sk_dp_search_guidelines results)

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description bears full responsibility for disclosing behavior. It only states the operation is 'Get', implying a safe read, but does not mention potential errors (e.g., ID not found), return format, permissions, rate limits, or any side effects. This is minimal behavioral transparency.

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, immediately states the action and the key qualifier, and contains no filler or redundancy. It is optimally concise and front-loaded.

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?

The tool is simple with one parameter and a clear schema, but there is no output schema and no annotations. The description does not mention return value, error behavior, or any requirements, leaving some contextual gaps. It is minimally viable but not fully complete.

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 100% and the description merely restates the ID parameter as 'database ID', adding no meaning beyond what the schema already provides. The baseline of 3 applies because the schema handles parameter semantics effectively.

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 uses a specific verb+resource ('Get a specific ÚOOÚ SR guidance document') and identifies the exact scope ('by its database ID'). This clearly distinguishes it from siblings like sk_dp_search_guidelines (search) and sk_dp_get_decision (get decision).

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 is for retrieving a known guidance document by ID, and the schema hints that IDs come from sk_dp_search_guidelines results. However, it does not explicitly state when to use this tool versus alternatives nor include any exclusions, leaving usage guidance implied rather than explicit.

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

sk_dp_list_topicsA

List all covered data protection topics with Slovak and English names. Use topic IDs to filter decisions and guidelines.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It mentions the output includes topic names and implies IDs, but does not disclose details like pagination, authorization, or exact return format. For a simple list operation, this is adequate but not exhaustive.

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 two concise sentences with no waste. The main purpose is front-loaded, and the additional usage hint is valuable without being verbose.

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?

The tool is simple, with no parameters and no output schema. The description covers what it lists (topics with names) and how to use the result (IDs for filtering), which is sufficient for this context.

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?

The tool has zero parameters, so the description does not need to explain parameter usage. The baseline for zero-parameter tools is 4, and the description appropriately focuses on the tool's purpose and output.

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 lists all covered data protection topics and specifies that it includes Slovak and English names. This is a specific verb+resource combination that distinguishes it from sibling tools that search or retrieve decisions and guidelines.

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 second sentence tells the agent to use topic IDs to filter decisions and guidelines, implying this tool is the source for those IDs. It provides clear context for when to use this tool, though it does not explicitly state alternatives or exclusions.

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

sk_dp_search_decisionsA

Full-text search across ÚOOÚ SR decisions (rozhodnutia, pokuty, upozornenia). Returns matching decisions with reference, entity name, fine amount, and GDPR articles cited.

ParametersJSON Schema
NameRequiredDescriptionDefault
typeNoFilter by decision type. Optional.
limitNoMaximum number of results to return. Defaults to 20.
queryYesSearch query (e.g., 'súhlas cookies', 'Slovak Telekom', 'porušenie ochrany')
topicNoFilter by topic ID (e.g., 'consent', 'cookies', 'transfers'). Optional.

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of disclosing behavioral traits. It indicates full-text search and lists returned fields, which is useful context. However, it does not mention that the operation is read-only, how pagination behaves, or any limitations such as language or result ordering. It adds some behavioral details but lacks depth.

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 two sentences, front-loaded with the main purpose and a concise list of returned fields. Every word contributes to understanding, with no fluff or redundant information.

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?

Given there is no output schema, the description sufficiently explains the return values (reference, entity name, fine amount, articles) and the search scope. Parameters are fully described in the schema. It doesn't mention error cases or pagination details, but the schema includes the limit default, so it is complete enough for a search tool.

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?

The input schema provides full descriptions for all 4 parameters (100% coverage), so the baseline is 3. The description does not add extra meaning about parameters; it only mentions output fields. Schema already explains query, type, limit, and topic, making additional description unnecessary.

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 'Full-text search across ÚOOÚ SR decisions' with specific decision types (rozhodnutia, pokuty, upozornenia) and enumerates returned fields (reference, entity name, fine amount, GDPR articles). It distinguishes this from siblings like sk_dp_get_decision (specific decision retrieval) and sk_dp_search_guidelines (guideline 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 implies usage for searching decisions but does not explicitly state when to use this tool over alternatives such as sk_dp_get_decision or sk_dp_search_guidelines. No exclusion criteria or alternative tool recommendations are provided, so usage context is implied rather than explicit.

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

sk_dp_search_guidelinesA

Search ÚOOÚ SR guidance documents: usmernenia, stanoviská, and metodické pokyny. Covers GDPR implementation, posúdenie vplyvu (DPIA), cookie consent, camera systems, and more.

ParametersJSON Schema
NameRequiredDescriptionDefault
typeNoFilter by guidance type. Optional.
limitNoMaximum number of results to return. Defaults to 20.
queryYesSearch query (e.g., 'posúdenie vplyvu', 'cookies súhlas', 'kamerové systémy')
topicNoFilter by topic ID (e.g., 'dpia', 'cookies', 'breach_notification'). Optional.

TDQS

A3.8/5.0
Behavior2/5

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

No annotations are provided, so the description carries the burden of behavioral disclosure. It does not mention any behavioral traits such as pagination, sorting, output format, or whether the search is read-only. The description focuses on content scope but omits operational details, leaving the agent with limited understanding of side effects or response characteristics.

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, concise sentence that front-loads the core purpose. It includes useful examples without unnecessary fluff, making it efficient and well-structured.

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?

Given the tool's simplicity, the description adequately covers the search scope and examples. Since there is no output schema, it does not need to detail return values. However, it could mention that results are likely a list of matching documents with metadata, but the absence of that is a minor gap.

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 100%, so the baseline is 3. The description itself does not add much beyond what the schema already provides, though it does align with the query examples. It does not enhance understanding of the 'type' or 'topic' parameters beyond schema definitions.

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 searches ÚOOÚ SR guidance documents, with a specific verb ('Search') and resource ('guidance documents'). It also lists specific types (usmernenia, stanoviská, metodické pokyny) and example topics, making its purpose distinct from sibling tools like search_decisions.

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 provides clear context about what it searches (guidance documents) and includes examples of topics, implying appropriate use cases. However, it does not explicitly state when to use this tool over siblings (e.g., 'for decisions, use search_decisions'), missing an opportunity for differentiation.

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. 6 tool updatesv0.1.0
    • First observedsk_dp_about
    • First observedsk_dp_get_decision
    • First observedsk_dp_get_guideline
    • First observedsk_dp_list_topics
    • First observedsk_dp_search_decisions
    • First observedsk_dp_search_guidelines

TDQS

A4/5.0

Scored across 6 tools

Disambiguation5/5

Each tool targets a distinct resource and action: search vs get for decisions, search vs get for guidelines, plus list_topics and about. There is no overlap or ambiguity between them.

Naming Consistency4/5

All tools share the 'sk_dp_' prefix and mostly follow verb_noun pattern (search_decisions, get_decision, get_guideline, search_guidelines, list_topics). The 'about' tool deviates slightly from the pattern but is still clear and consistent in style.

Tool Count5/5

With 6 tools, the server is well-scoped for a read-only data protection reference. Each tool covers a distinct aspect of the domain without unnecessary bloat or gaps.

Completeness5/5

The server covers both decisions and guidelines with search and retrieval, plus topic listing and metadata. For a read-only regulatory database, there are no obvious missing operations; users can find and retrieve relevant documents.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers