Austrian Law (RIS) — Bundesrecht, Landesrecht & Judikatur for VS Code
io.github.paragraflabs/at-ris-mcp
Austria RIS: federal & state law, case law, gazettes, change monitoring (Bundesrecht, Judikatur).
client:VS Code
transport:stdio
runtime:pypi
Install Austrian Law (RIS) — Bundesrecht, Landesrecht & Judikatur in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ris-cache-dir",
"description": "RIS_CACHE_DIR",
"password": true
},
{
"type": "promptString",
"id": "ris-audit-dir",
"description": "RIS_AUDIT_DIR",
"password": true
},
{
"type": "promptString",
"id": "ris-rate-ms",
"description": "RIS_RATE_MS",
"password": true
}
],
"servers": {
"at-ris-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"at-ris-mcp"
],
"env": {
"RIS_CACHE_DIR": "${input:ris-cache-dir}",
"RIS_AUDIT_DIR": "${input:ris-audit-dir}",
"RIS_RATE_MS": "${input:ris-rate-ms}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs