Slovak MCP Server

Slovak legislation via MCP — full-text search across statutes and provisions

Local serverstdioTypeScript

What is the Slovak MCP server?

Slovak legislation via MCP — full-text search across statutes and provisions. Exposed over MCP by the slovak mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

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

We build AI-accelerated compliance and legal research tools for the European market. This MCP server is part of our Central European coverage — alongside Czech, Polish, and Hungarian law MCPs — ensuring that the full EU compliance picture is accessible from a single AI interface.

  • A lawyer validating citations in a brief or zmluva
  • A compliance officer checking obligations under zákon č. 18/2018 Z.z. or zákon č. 69/2018 Z.z
  • A legal tech developer building tools on Slovak law
  • A researcher tracing legislative history from dôvodová správa to zákon

Its toolset

Everything the assistant can do here goes through one of these:

  • search_legislation — FTS5 full-text search across 1,913 provisions with BM25 ranking. Supports quoted phrases, boolean operators, prefix wildcards
  • get_provision — Retrieve specific provision by zákon number + paragraph (e.g., "18/2018 Z.z." + "§ 13")
  • check_currency — Check if a statute is in force (platný/neplatný), amended, or repealed
  • validate_citation — Validate citation against database — zero-hallucination check. Supports "zákon č. 18/2018 Z.z., § 13"
  • build_legal_stance — Aggregate citations from multiple statutes for a legal topic
  • format_citation — Format citations per Slovak conventions (full/short/pinpoint)
  • list_sources — List all available statutes with metadata, coverage scope, and data provenance
  • about — Server info, capabilities, dataset statistics, and coverage summary
  • get_eu_basis — Get EU directives/regulations underlying a Slovak statute
  • get_slovak_implementations — Find Slovak laws implementing a specific EU act
  • search_eu_implementations — Search EU documents with Slovak implementation counts
  • get_provision_eu_basis — Get EU law references for a specific provision

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at @anthropic/mcp-inspector on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

When to reach for it

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. Slovak's toolset — search_legislation, get_provision, check_currency and 11 more — is a fair guide to whether it matches your workflow. It is maintained by eu.ansvar; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Slovak's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Slovak.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the slovak mcp server does with a few real requests.

Available tools

ToolWhat it does
search_legislationFTS5 full-text search across 1,913 provisions with BM25 ranking. Supports quoted phrases, boolean operators, prefix wildcards
get_provisionRetrieve specific provision by zákon number + paragraph (e.g., "18/2018 Z.z." + "§ 13")
check_currencyCheck if a statute is in force (platný/neplatný), amended, or repealed
validate_citationValidate citation against database — zero-hallucination check. Supports "zákon č. 18/2018 Z.z., § 13"
build_legal_stanceAggregate citations from multiple statutes for a legal topic
format_citationFormat citations per Slovak conventions (full/short/pinpoint)
list_sourcesList all available statutes with metadata, coverage scope, and data provenance
aboutServer info, capabilities, dataset statistics, and coverage summary
get_eu_basisGet EU directives/regulations underlying a Slovak statute
get_slovak_implementationsFind Slovak laws implementing a specific EU act
search_eu_implementationsSearch EU documents with Slovak implementation counts
get_provision_eu_basisGet EU law references for a specific provision
validate_eu_complianceCheck implementation status of Slovak statutes against EU directives
ConnectFirst request opens an OAuth signup flow (setup details: [ansvar.eu/docs/quickstart](https://ansvar.eu/docs/quickstart)). After signup, your client is bound to your account; tier (free / premium / team / company) determi

How to install the Slovak MCP server

{
  "mcpServers": {
    "slovak-law": {
      "command": "npx",
      "args": ["-y", "@anthropic/mcp-inspector"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Slovak to search legislation.
  • Use Slovak to get provision.
  • Use Slovak to check currency.

Frequently asked questions

It connects Slovak to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (search_legislation, get_provision, check_currency, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Slovak directly.