Slovenian MCP Server

Query Slovenian statutes, court decisions, EU cross-references, and parliamentary materials

Local serverstdioTypeScript

What is the Slovenian MCP server?

Query Slovenian statutes, court decisions, EU cross-references, and parliamentary materials. That is what the slovenian mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

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 started as our internal reference tool for Slovenian law -- turns out everyone building compliance tools for the CEE market has the same research frustrations.

  • A lawyer validating citations in a brief or contract
  • A compliance officer checking ZVOP-2 obligations or NIS2 requirements
  • A legal tech developer building tools on Slovenian law
  • A researcher tracing EU directives through to Slovenian implementation

Getting it running

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.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • search_legislation — FTS5 search on 11,970 provisions with BM25 ranking
  • get_provision — Retrieve specific provision by zakon identifier + člen/odstavek
  • validate_citation — Validate citation against database (zero-hallucination check)
  • build_legal_stance — Aggregate citations from statutes and preparatory works
  • format_citation — Format citations per Slovenian conventions (full/short/pinpoint)
  • check_currency — Check if statute is in force, amended, or repealed
  • list_sources — List all available statutes with metadata and data provenance
  • about — Server info, capabilities, dataset statistics, and coverage summary
  • get_eu_basis — Get EU directives/regulations for Slovenian statute
  • get_slovenian_implementations — Find Slovenian laws implementing EU act
  • search_eu_implementations — Search EU documents with Slovenian implementation counts
  • get_provision_eu_basis — Get EU law references for specific provision

Things to watch

  • 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 Slovenian.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of database access servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Slovenian's toolset — search_legislation, get_provision, validate_citation 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.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
search_legislationFTS5 search on 11,970 provisions with BM25 ranking
get_provisionRetrieve specific provision by zakon identifier + člen/odstavek
validate_citationValidate citation against database (zero-hallucination check)
build_legal_stanceAggregate citations from statutes and preparatory works
format_citationFormat citations per Slovenian conventions (full/short/pinpoint)
check_currencyCheck if statute is in force, amended, or repealed
list_sourcesList all available statutes with metadata and data provenance
aboutServer info, capabilities, dataset statistics, and coverage summary
get_eu_basisGet EU directives/regulations for Slovenian statute
get_slovenian_implementationsFind Slovenian laws implementing EU act
search_eu_implementationsSearch EU documents with Slovenian implementation counts
get_provision_eu_basisGet EU law references for specific provision
validate_eu_complianceCheck implementation status (requires EU MCP)
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 Slovenian MCP server

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

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Slovenian to search legislation.
  • Use Slovenian to get provision.
  • Use Slovenian to validate citation.

Frequently asked questions

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