MCP Hub
Back to servers

ris

Access Austrian laws, court decisions & legal documents via the RIS API.

Updated
Feb 9, 2026

Quick Install

npx -y ris-mcp-ts

RIS MCP Server

CI npm version License: MIT Node.js MCP MCP Registry

An MCP (Model Context Protocol) server that gives AI assistants access to Austria's official legal database — the Rechtsinformationssystem (RIS).

Ask your AI assistant about Austrian law, and it will search and retrieve legal documents directly from the official government API. No API key required.

What You Can Do

Once connected, you can ask your AI assistant things like:

"What does Austrian law say about tenancy rights?"

"Find Constitutional Court decisions on freedom of expression."

"Show me §1295 of the ABGB (Austrian Civil Code)."

"What laws about climate protection were published in 2024?"

"Look up the building code for the province of Salzburg."

"Get the full text of document NOR40052761."

The server translates these natural language requests into structured API calls against the RIS Open Government Data API.

Features

  • 12 specialized tools covering all major RIS collections
  • Federal law (ABGB, StGB, UGB, ...) and state law for all 9 provinces
  • Court decisions from 11 court types (Supreme Court, Constitutional Court, Administrative Court, ...)
  • Law gazettes — Federal (BGBl) and state (LGBl)
  • Government bills, ministerial decrees, cabinet protocols
  • Full document retrieval with smart prefix-based routing
  • Change history tracking across 30 application types
  • Markdown and JSON output formats
  • Free and open — uses Austria's Open Government Data API, no API key needed

Quick Start

Run directly without installation:

npx ris-mcp-ts

Or install globally:

npm install -g ris-mcp-ts

Configuration

Claude Desktop

Add to your Claude Desktop config (Settings > Developer > Edit Config):

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "ris": {
      "command": "npx",
      "args": ["-y", "ris-mcp-ts"]
    }
  }
}

Note: The "Add custom connector" UI in Claude Desktop only supports remote MCP servers (HTTP/SSE). Local stdio servers like this one must be configured via the JSON file.

Claude Code

Add to your project or user settings:

claude mcp add ris -- npx -y ris-mcp-ts

VS Code (GitHub Copilot)

Add to .vscode/mcp.json in your project:

{
  "servers": {
    "ris": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "ris-mcp-ts"]
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project (or ~/.cursor/mcp.json for global access):

{
  "mcpServers": {
    "ris": {
      "command": "npx",
      "args": ["-y", "ris-mcp-ts"]
    }
  }
}

Windsurf

Add to your Windsurf MCP config at ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "ris": {
      "command": "npx",
      "args": ["-y", "ris-mcp-ts"]
    }
  }
}

Other MCP Clients

Any MCP-compatible client can connect via stdio transport:

npx ris-mcp-ts

Available Tools

ToolDescription
ris_bundesrechtSearch federal laws (ABGB, StGB, UGB, etc.)
ris_landesrechtSearch state/provincial laws (all 9 provinces)
ris_judikaturSearch court decisions (11 court types)
ris_bundesgesetzblattSearch Federal Law Gazettes (BGBl I/II/III)
ris_landesgesetzblattSearch State Law Gazettes (LGBl)
ris_regierungsvorlagenSearch government bills
ris_dokumentRetrieve full document text by ID or URL
ris_bezirkeSearch district authority announcements
ris_gemeindenSearch municipal law and regulations
ris_sonstigeSearch miscellaneous collections (8 sub-apps)
ris_historyTrack document change history (30 app types)
ris_verordnungenSearch state ordinance gazettes

Tool Reference

ris_bundesrecht — Federal Laws

Search Austrian federal laws such as ABGB, StGB, UGB, and more.

Inputs:

ParameterTypeDescription
suchwortestringFull-text search (e.g., "Mietrecht", "Schadenersatz")
titelstringSearch in law titles (e.g., "ABGB", "Strafgesetzbuch")
paragraphstringSection number (e.g., "1295" for §1295)
applikationstring"BrKons" (consolidated, default), "Begut" (draft reviews), "Erv" (English version)
fassung_vomstringDate for historical version (YYYY-MM-DD)
seitenumberPage number (default: 1)
limitnumberResults per page: 10, 20, 50, 100 (default: 20)
response_formatstring"markdown" (default) or "json"

All parameters are optional. At least one search parameter (suchworte, titel, or paragraph) should be provided.

ris_landesrecht — State/Provincial Laws

Search state laws of the nine Austrian provinces.

Inputs:

ParameterTypeDescription
suchwortestringFull-text search
titelstringSearch in law titles
bundeslandstringProvince: Wien, Niederoesterreich, Oberoesterreich, Salzburg, Tirol, Vorarlberg, Kaernten, Steiermark, Burgenland
applikationstring"LrKons" (consolidated, default)
seitenumberPage number
limitnumberResults per page
response_formatstring"markdown" or "json"
ris_judikatur — Court Decisions

Search court decisions from Austrian courts.

Inputs:

ParameterTypeDescription
suchwortestringFull-text search in decisions
gerichtstringCourt type (see below)
normstringLegal norm (e.g., "1319a ABGB")
geschaeftszahlstringCase number (e.g., "5Ob234/20b")
entscheidungsdatum_vonstringDecision date from (YYYY-MM-DD)
entscheidungsdatum_bisstringDecision date to (YYYY-MM-DD)
seitenumberPage number
limitnumberResults per page
response_formatstring"markdown" or "json"

Available courts:

ValueCourt
JustizSupreme Court (OGH), Higher Regional Courts (OLG), Regional Courts (LG) — default
VfghConstitutional Court
VwghSupreme Administrative Court
BvwgFederal Administrative Court
LvwgProvincial Administrative Courts
DskData Protection Authority
AsylGHAsylum Court (historical)
NormenlisteIndex of legal norms
PvakPersonnel Representation Supervisory Commission
GbkEqual Treatment Commission
DokDisciplinary Commission
ris_bundesgesetzblatt — Federal Law Gazette

Search the Federal Law Gazette (BGBl) — official publications of federal legislation.

Inputs:

ParameterTypeDescription
bgblnummerstringGazette number (e.g., "120")
teilstring"1" (I = Acts), "2" (II = Regulations), "3" (III = Treaties)
jahrgangstringYear (e.g., "2023")
suchwortestringFull-text search
titelstringSearch in titles
applikationstring"BgblAuth" (authentic from 2004, default), "BgblPdf" (PDF), "BgblAlt" (1945–2003)
seitenumberPage number
limitnumberResults per page
response_formatstring"markdown" or "json"
ris_landesgesetzblatt — State Law Gazette

Search State Law Gazettes (LGBl) — official publications of state legislation.

Inputs:

ParameterTypeDescription
lgblnummerstringGazette number (e.g., "50")
jahrgangstringYear (e.g., "2023")
bundeslandstringProvince name
suchwortestringFull-text search
titelstringSearch in titles
applikationstring"LgblAuth" (authentic, default), "Lgbl" (general), "LgblNO" (Niederoesterreich)
seitenumberPage number
limitnumberResults per page
response_formatstring"markdown" or "json"
ris_regierungsvorlagen — Government Bills

Search government bills — draft legislation submitted to parliament.

Inputs:

ParameterTypeDescription
suchwortestringFull-text search
titelstringSearch in titles
beschlussdatum_vonstringApproval date from (YYYY-MM-DD)
beschlussdatum_bisstringApproval date to (YYYY-MM-DD)
einbringende_stellestringSubmitting ministry (e.g., BKA, BMF, BMJ, BMK)
im_ris_seitstringAdded recently: EinerWoche, ZweiWochen, EinemMonat, DreiMonaten, SechsMonaten, EinemJahr
sortierung_richtungstringAscending or Descending
sortierung_spaltestringKurztitel, EinbringendeStelle, Beschlussdatum
seitenumberPage number
limitnumberResults per page
response_formatstring"markdown" or "json"
ris_dokument — Full Document Retrieval

Retrieve the full text of a legal document by its ID or URL. Uses a dual strategy: direct URL access first, then search API fallback.

Inputs:

ParameterTypeDescription
dokumentnummerstringRIS document number (e.g., "NOR40052761")
urlstringDirect URL to document content
response_formatstring"markdown" (default) or "json"

At least one of dokumentnummer or url is required. Long documents are truncated to 25,000 characters.

Supported document prefixes:

PrefixType
NORFederal norms
LBG, LKT, LNO, LOO, LSB, LST, LTI, LVB, LWIState laws (9 provinces)
JWR, JFR, JWT, BVWG, LVWG, DSB, GBK, PVAK, ASYLGHCourt decisions
BGBLA, BGBLFederal Law Gazette
REGVGovernment bills
BVBDistrict authorities
VBLOrdinance gazettes
MRP, ERLCabinet protocols, ministerial decrees
ris_bezirke — District Authority Announcements

Search announcements from district administrative authorities.

Note: Only available for: Niederoesterreich, Oberoesterreich, Tirol, Vorarlberg, Burgenland, Steiermark.

Inputs:

ParameterTypeDescription
suchwortestringFull-text search
titelstringSearch in titles
bundeslandstringProvince name
bezirksverwaltungsbehoerdestringDistrict authority name
kundmachungsnummerstringAnnouncement number
kundmachungsdatum_vonstringDate from (YYYY-MM-DD)
kundmachungsdatum_bisstringDate to (YYYY-MM-DD)
im_ris_seitstringAdded recently: EinerWoche, ZweiWochen, EinemMonat, DreiMonaten, SechsMonaten, EinemJahr
seitenumberPage number
limitnumberResults per page
response_formatstring"markdown" or "json"
ris_gemeinden — Municipal Law

Search municipal law — local ordinances and regulations.

Inputs:

ParameterTypeDescription
suchwortestringFull-text search
titelstringSearch in titles
bundeslandstringProvince name
gemeindestringMunicipality name (e.g., "Graz")
applikationstring"Gr" (municipal law, default) or "GrA" (official gazettes)
im_ris_seitstringAdded recently
seitenumberPage number
limitnumberResults per page
response_formatstring"markdown" or "json"

Additional parameters depend on the selected application. See Gr (municipal law) and GrA (official gazettes) specific parameters in the source code.

ris_sonstige — Miscellaneous Collections

Search miscellaneous legal collections and specialized databases.

Inputs:

ParameterTypeDescription
applikationstringRequired. Collection to search (see below)
suchwortestringFull-text search
titelstringSearch in titles
datum_vonstringDate from (YYYY-MM-DD)
datum_bisstringDate to (YYYY-MM-DD)
im_ris_seitstringAdded recently
seitenumberPage number
limitnumberResults per page
response_formatstring"markdown" or "json"

Available collections:

ValueDescription
MrpCabinet protocols (Ministerratsprotokolle)
ErlaesseMinisterial decrees
UptsParty transparency reports
KmGerCourt announcements
AvsvSocial insurance regulations
AvnVeterinary notices
SpgHealth structure plans
PruefGewOTrade licensing exams

Each collection has additional specific parameters. See the tool description for details.

ris_history — Document Change History

Track document creation, modification, and deletion across the RIS database.

Inputs:

ParameterTypeDescription
applikationstringRequired. Application type (30 options — see below)
aenderungen_vonstringChanges from date (YYYY-MM-DD)
aenderungen_bisstringChanges to date (YYYY-MM-DD)
include_deletedbooleanInclude deleted documents (default: false)
seitenumberPage number
limitnumberResults per page
response_formatstring"markdown" or "json"

Available applications (30):

Federal law: Bundesnormen, BgblAuth, BgblAlt, BgblPdf, RegV State law: Landesnormen, LgblAuth, Lgbl, LgblNO, Vbl, Gemeinderecht, GemeinderechtAuth Case law: Justiz, Vfgh, Vwgh, Bvwg, Lvwg, Dsk, Gbk, Pvak, AsylGH Other: Bvb, Mrp, Erlaesse, PruefGewO, Avsv, Spg, KmGer, Dok, Normenliste

ris_verordnungen — State Ordinance Gazettes

Search state ordinance gazettes (Verordnungsblätter).

Note: Currently only data from Tirol is available (since January 2022).

Inputs:

ParameterTypeDescription
suchwortestringFull-text search
titelstringSearch in titles
bundeslandstringProvince name
kundmachungsnummerstringAnnouncement number
kundmachungsdatum_vonstringDate from (YYYY-MM-DD)
kundmachungsdatum_bisstringDate to (YYYY-MM-DD)
seitenumberPage number
limitnumberResults per page
response_formatstring"markdown" or "json"

Development

Prerequisites

  • Node.js >= 20.0.0

Setup

git clone https://github.com/philrox/ris-mcp-ts.git
cd ris-mcp-ts
npm install
npm run build

Scripts

ScriptDescription
npm run devStart with hot reload (tsx)
npm run buildCompile TypeScript
npm startRun compiled version
npm testRun all tests
npm run checkTypecheck + lint + format check + tests
npm run inspectLaunch MCP Inspector for manual testing

Project Structure

src/
├── index.ts           # Entry point (stdio transport)
├── server.ts          # MCP server setup, delegates to tools/
├── client.ts          # HTTP client for RIS API
├── types.ts           # Zod schemas + TypeScript types
├── parser.ts          # JSON parsing and response normalization
├── formatting.ts      # Output formatting (markdown/json)
├── helpers.ts         # Shared helper functions
├── constants.ts       # Static mappings and configuration
├── tools/             # One file per tool handler
│   ├── index.ts
│   ├── bundesrecht.ts
│   ├── landesrecht.ts
│   ├── judikatur.ts
│   └── ...
└── __tests__/         # Unit and integration tests

Contributing

See CONTRIBUTING.md for guidelines.

License

MIT


Built on the Open Government Data API provided by the Austrian Federal Chancellery (Bundeskanzleramt).

Reviews

No reviews yet

Sign in to write a review