CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Legal Text Mcp De

klein-business/legal-text-mcp-de
authSTDIOregistry active
Summary

Exposes German federal and state legal texts through MCP tools for listing laws, fetching specific norms by citation, resolving references, and running full-text searches. Every text includes provenance metadata: source URL, fetch timestamp, content hash, and parser path. Loads from gesetze-im-internet.de for federal law and EUR-Lex for EU regulations like GDPR. Ships with both an MCP interface and a parallel FastAPI HTTP API over the same runtime. You can run it with fixture data for testing, pull signed corpus bundles from GHCR, or build your own corpus from official sources. Useful when you need programmatic access to authoritative German legal text with audit-grade sourcing, not legal interpretation.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

legal-text-mcp-de: German legal text MCP server banner

PyPI version Python 3.12 / 3.13 License: Apache 2.0 GitHub release Container image Docs

CI CodeQL OpenSSF Scorecard OpenSSF Best Practices SLSA Level 3 Signed by cosign MCP Registry

legal-text-mcp-de

Cite-grade German legal-text infrastructure for LLM agents. ~8 500 federal + Länder + EU laws via MCP, HTTP API, and a typer shell CLI — all over the same runtime, with cryptographic provenance from gesetze-im-internet.de and EUR-Lex / Cellar.

It is local or server-side infrastructure: no SaaS, no billing, no accounts, no tenant model, and no legal advice. The runtime loads either the committed fixture packages used by fast CI or a generated production corpus package built outside Git. Official text comes from gesetze-im-internet.de for German federal laws and from EUR-Lex / Cellar for EU acts such as the GDPR.

No legal advice. This software returns text and structured metadata. It does not interpret the law, advise on it, or produce any legal conclusion. The maintainer assumes no liability for use in legal decision-making contexts.

Older internal documentation has been archived under docs-legacy/summary.md.

Status

LifecycleStable v2.1.3 (current patch on v2.1.0 typer-CLI minor) — MCP-native domain server with typer CLI
VersioningSemVer 2.0.0 (stability contract starts at v1.0.0)
LicenceApache License 2.0 — see LICENSE and NOTICE
UpstreamDerived from floleuerer/deutsche-gesetze-mcp (MIT, preserved)

Features

  • MCP tools for listing laws, fetching norms, resolving citations, full-text search, and source provenance.
  • HTTP API (FastAPI) over the same runtime, with structured /health, /ready, /laws, /search, and OpenAPI endpoints.
  • Provenance-first design: every law and norm carries source URL, fetch timestamp, content hash, and the parser path it traversed.
  • Two corpus modes: committed fixture packages for deterministic tests and CI, or a generated production package built from official sources at runtime.
  • No editorial bundling: this repository ships tooling, not legal text. Texts are loaded from official sources at runtime.

Installation

Mode 1 — pip install from PyPI (smallest dependency)

pip install legal-text-mcp-de==2.1.3
DATASET_PATH=/path/to/corpus.tar.zst legal-text-mcp-de serve

The package ships the runtime only; provide a corpus bundle via DATASET_PATH (build with prepare_data.build_corpus, see Mode 4) or point at an existing .tar.zst you trust.

Mode 2 — uvx + auto-download (recommended, easiest)

uvx legal-text-mcp-de serve

Server fetches the latest signed corpus bundle from GHCR on first run.

Mode 3 — Docker with pre-bundled corpus

docker run -p 8001:8001 ghcr.io/klein-business/legal-text-mcp-de-full:2.1.3 serve

Mode 4 — Self-built corpus (compliance-sensitive)

git clone https://github.com/klein-business/legal-text-mcp-de
cd legal-text-mcp-de
uv run python -m prepare_data.build_corpus --output ./my-corpus.tar.zst --sources land:by,land:nrw
DATASET_PATH=./my-corpus.tar.zst uvx legal-text-mcp-de serve

Mode 5 — Public-hosted service

// claude_desktop_config.json
{
  "mcpServers": {
    "legal-de": {
      "url": "https://mcp.klein.business/legal/de",
      "transport": "streamable-http"
    }
  }
}

CLI

legal-text-mcp-de ships a full subcommand CLI. Bare invocation prints --help. Common commands:

legal-text-mcp-de serve              # start the MCP server (replaces the v2.0 bare invocation)
legal-text-mcp-de http               # start the FastAPI HTTP API
legal-text-mcp-de laws --query DSGVO # list laws
legal-text-mcp-de norm BGB "§ 433"   # fetch a single norm
legal-text-mcp-de search Werbung     # full-text search
legal-text-mcp-de corpus pull        # download the signed corpus bundle
legal-text-mcp-de corpus verify      # cosign-verify the local bundle
legal-text-mcp-de version            # version + Python + platform

Add --json to any subcommand for machine-readable output (matches the HTTP API's response schema). See CLI reference for the full subcommand list.

BREAKING in v2.1.0: bare legal-text-mcp-de now prints --help. Append serve to keep the v2.0 behaviour (started the MCP server).

Quickstart

Run the MCP server with the committed fixture corpus

uv sync --all-groups

DATASET_PATH=tests/fixtures/normalized \
STRICT_STARTUP=true \
uv run legal-text-mcp-de serve

The default transport is streamable HTTP at http://localhost:8001/mcp. For desktop / offline clients use the stdio transport instead — see Quickstart → stdio.

Dev shortcut. A Justfile wraps the common uv invocations (just install, just test, just lint, just run, just api, just docs). Install via brew install just. The Justfile is optional — CI only uses uv directly.

Run the HTTP API

Since v2.1 the easiest way is the new CLI:

DATASET_PATH=tests/fixtures/normalized \
STRICT_STARTUP=true \
uv run legal-text-mcp-de http

The default port is 8001 (from settings.port / PORT env var); use --port <N> to override.

Or directly via uvicorn (equivalent — same FastAPI app):

DATASET_PATH=tests/fixtures/normalized \
STRICT_STARTUP=true \
uv run uvicorn legal_text_mcp_de.http_api:app --host 127.0.0.1 --port 8001

The HTTP layer enforces MAX_REQUEST_BODY_BYTES (default 1048576 = 1 MiB) as a defence-in-depth body-size cap; over-limit requests return 413 Payload Too Large. The operator's reverse proxy is still expected to enforce a proxy-level limit on top of this.

Docker

The Docker image does not bundle legal text data. Mount a validated package at /data/legal-texts:

docker run --rm -p 8001:8001 \
  -v /path/to/legal-text-package:/data/legal-texts:ro \
  ghcr.io/klein-business/legal-text-mcp-de:2.1.3 serve
  • See examples/docker-compose/http/ for a minimal HTTP-mode Compose example.
  • See examples/docker-compose/production/ for a committed, CI-tested production stack (MCP + HTTP behind Caddy, switchable via Compose profiles).

MCP Resources

Since v2.0, the corpus is exposed as read-only legal:// URIs that any MCP client can load directly into its LLM context. Examples:

  • legal://laws — paginated index
  • legal://laws/bgb — BGB header + norm index
  • legal://laws/bgb/norms/par:433 — § 433 BGB as Markdown
  • legal://corpus/coverage — what's in the corpus

See docs/concepts/mcp-native.md for the full URI catalogue.

MCP Prompts (slash-commands)

Five curated workflows appear as slash-commands in MCP clients:

SlashArgsPurpose
/rechtsfragefrage, rechtsgebiet?Answer a German legal question with exact norm citations
/zitation-checkencitationResolve a citation (e.g. § 433 Abs. 1 BGB) + Stand-Datum
/norm-erklaerencode, normPlain-language explanation with cited cross-references
/recherchetopicMulti-step research using research_topic smart tool
/dsgvo-checkaktivitaetWalk through GDPR Art. 5, 6, 7, 9, 13, 14 against a processing activity

Smart Tools

research_topic is a multi-step research tool that orchestrates 2 LLM-sampling calls per invocation:

  1. Corpus search for candidate norms
  2. LLM ranking of candidates by relevance
  3. Related-norms graph loading
  4. LLM synthesis of a structured research report

When the client lacks sampling support, the tool returns a degraded report with ranked candidates only.

Data Sources

SourceCoverageReuse position
gesetze-im-internet.deGerman federal lawsPublic-domain-equivalent under §5 (1) UrhG
EUR-Lex / Cellar (publications.europa.eu)EU acts (GDPR, AI Act, Data Act, …)Reuse permitted under Commission Decision 2011/833/EU with attribution

No text from these sources is committed to this repository. The generated-corpus pipeline fetches them at build time and stores provenance in a manifest.

MCP Tools

See the MCP tools reference for the full surface. Highlights:

  • list_laws(query?) — list loaded laws with optional metadata filter.
  • get_law(code) — law metadata + normalised norm summaries.
  • get_norm(code, norm) — return one structured norm.
  • search_laws(query, codes?) — search normalised texts.
  • resolve_citation(...) — resolve structured citations without legal interpretation.
  • get_source_metadata(code?), get_source_limitations(...), get_corpus_coverage(), get_related_norms(code, norm).

MCP tools return JSON-compatible objects. They do not return double-serialised JSON strings.

HTTP API

MethodPathPurpose
GET/healthLiveness
GET/readyReadiness
GET/lawsList laws
GET/laws/{code}Law detail
GET/laws/{code}/norms/{norm}Norm detail
GET/laws/{code}/norms/{norm}/relationshipsRelationship metadata
GET/corpus/coverageCorpus coverage summary
GET/corpus/source-limitationsSource limitations query
GET/searchSearch
GET/openapi.jsonOpenAPI document

Article-plus-section paths must be URL-encoded:

/laws/egbgb/norms/art%3A246a%2Fpar%3A1

Documentation

Full documentation is published at klein-business.github.io/legal-text-mcp-de.

Quick links:

  • Quickstart
  • MCP tools
  • HTTP API
  • Operations: security, SBOM, cosign-verify, versioning, threat model
  • Roadmap

Source-of-truth documents live in the repo: README.md, CHANGELOG.md, SECURITY.md, CONTRIBUTING.md, GOVERNANCE.md, NOTICE, LICENSE.

Development

uv sync --all-groups
uv run --group dev pytest

The full fixture-backed release gate:

uv run --group dev python scripts/verify_release.py

The public-flip readiness gate:

uv run --group dev python scripts/verify_pre_flip.py

A Justfile wraps the common targets (just test, just lint, just docs, just run, just api) for convenience.

Contributing

See CONTRIBUTING.md for guidelines, code of conduct, and security policy. All contributions must comply with the Developer Certificate of Origin (sign-off with git commit -s).

Verification

Every release since v1.0.0 is signed and accompanied by an SBOM and SLSA-3 provenance. Examples below use v2.1.3; substitute the tag you actually pulled.

Cosign image signature

cosign verify ghcr.io/klein-business/legal-text-mcp-de:2.1.3 \
  --certificate-identity-regexp 'https://github.com/klein-business/.*' \
  --certificate-oidc-issuer https://token.actions.githubusercontent.com

See Verify with cosign for SBOM and SLSA attestation verification.

Licence and acknowledgements

This project is licensed under the Apache License 2.0. See NOTICE for required attribution.

Derived from floleuerer/deutsche-gesetze-mcp (Copyright (c) 2025 Florian Leuerer, MIT). Upstream licence terms are preserved in licenses/MIT-floleuerer.txt.


MCP Registry: io.github.klein-business/legal-text-mcp-de · registry.modelcontextprotocol.io

mcp-name: io.github.klein-business/legal-text-mcp-de

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

DATASET_PATH

Path to a normalised corpus directory or a corpus archive (legal-texts-de-*.tar.zst). Defaults to the bundled fixture; production deployments should mount /data/corpus/latest.tar.zst.

STRICT_DATASETdefault: false

Set to 'true' to refuse to start if the dataset cannot be loaded (recommended for hosted deployments).

ANTHROPIC_API_KEYsecret

Optional. Required only for the smart `research_topic` tool which uses LLM-assisted synthesis. Without it, the tool degrades gracefully to a ranked-search fallback.

Registryactive
Packagelegal-text-mcp-de
TransportSTDIO
AuthRequired
UpdatedMay 18, 2026
View on GitHub