Skip to main content

MCP server that makes the BSI IT-Grundschutz++ compendium queryable for AI agents and ISMS tooling.

Project description

grundschutz-mcp

CI Python Code: Apache 2.0 Data: CC BY-SA 4.0 MCP

A Model Context Protocol (MCP) server that makes the German BSI IT-Grundschutz++ compendium queryable for AI agents and ISMS tooling. Instead of pasting requirements into prompts or letting a model guess from stale training data, agents query the exact, current requirement text from the official BSI source, addressable by ID.

Disclaimer: This is an independent, community project. It is not affiliated with, endorsed by, or certified by the BSI (Bundesamt für Sicherheit in der Informationstechnik). It only makes the BSI's publicly released, machine-readable data accessible over MCP.

Why

Compliance work breaks when an AI hallucinates requirements that never existed. This server removes that failure mode:

  • Correct. Every requirement is traceable to a real BSI ID, not to training data.
  • Current. Data is loaded from a pinned commit of the official BSI repository; updates flow to every agent without prompt changes.
  • Token-efficient. Agents fetch only the few requirements a step needs, not the whole compendium.
  • Reusable. One implementation, usable by any MCP client (your own audit pipeline, Claude Code, ISMS tools).

Note on language: The technical surface (tool names, parameters, errors) is English. The content this server returns, the BSI requirement texts, stays in the German original and is never translated. Translating security requirements would lose the precision compliance work depends on.

Quick start

Add the server to Claude Code:

claude mcp add grundschutz -- uvx grundschutz-mcp

Or configure it manually in your MCP client (STDIO transport):

{
  "mcpServers": {
    "grundschutz": {
      "command": "uvx",
      "args": ["grundschutz-mcp"]
    }
  }
}

Tools

Tool Purpose
list_modules List all modules (Bausteine) with requirement counts — the entry point for exploring the catalog.
list_requirements_by_module List the requirements in a given module.
get_requirement_by_id Fetch a single requirement or practice by its ID.
get_requirements_by_ids Fetch several requirements at once by ID — e.g. when following cross-references.
search_requirements Full-text search across requirement titles, texts, and tags.
filter_requirements Filter by module, security level, effort range, and/or tag (combined, AND).
get_cross_references Internal cross-references between requirements (related or required).
get_catalog_stats Catalog overview: counts by security level, effort level, and tag.
get_catalog_metadata Catalog version, source commit, and license info.

Each requirement carries its German text and guidance, its module, a security_level (normal-SdT / erhöht), an effort_level (0–5), tags, and its related / required cross-references. Requirement texts are the original German wording from the BSI source.

Usage examples

Once the server is connected, an agent answers questions by calling these tools. Every answer is the exact BSI wording, traceable to the pinned source — no guessing from training data. (Examples below are illustrative snapshots from the pinned BSI version; run get_catalog_metadata for the live state.)

Explore the catalogue

"Which modules does Grundschutz++ cover?"list_modules → e.g. ARCH.2 — Netzdesign (6 requirements), GC.1 — Grundlagen (2), … one ModuleSummary per Baustein.

Fetch a specific requirement

"What does GC.1.1 require?"get_requirement_by_id("GC.1.1")"Governance und Compliance MUSS Verfahren und Regelungen zur Errichtung und Aufrechterhaltung eines ISMS nach BSI Grundschutz++ verankern." (security_level: normal-SdT, effort_level: 0), plus its German guidance.

Work through a module

"List the requirements in GC.2."list_requirements_by_module("GC.2")GC.2.1 Festlegung des externen Kontextes, GC.2.2 Festlegung des internen Kontextes — each with its security level and effort score for prioritisation.

Search the content

"What does Grundschutz say about Verschlüsselung?"search_requirements("Verschlüsselung") → matches such as DLS.2.2 Transportverschlüsselung, DLS.2.3 Vollverschlüsselung, SENS.2.3 Verschlüsselung und Signatur. Searches titles, texts, and tags.

Follow cross-references

"What is related to GC.2.1?"get_cross_references("related")GC.2.1 → GC.2.2. Use get_cross_references("required") for prerequisite requirements, then get_requirements_by_ids([...]) to pull the referenced requirements in a single call.

Scope by risk and effort

"Which 'erhöht' requirements in GC.1 are quick wins?"filter_requirements(module="GC.1", security_level="erhöht", max_effort=2) → the matching requirements, sorted by id. Criteria combine with AND; effort uses min_effort/max_effort as an inclusive band.

Get an overview

"How is the catalogue distributed, and which tags exist?"get_catalog_stats → totals and counts by security_level, by effort_level (0–5), and by tag (the tag list doubles as tag discovery for filter_requirements).

Check provenance

"How current is the data, and where is it from?"get_catalog_metadata → the requirement count, BSI source repository, the exact pinned commit, and the data license (CC BY-SA 4.0).

Data source and license

  • Source: BSI-Bund/Stand-der-Technik-Bibliothek, pinned to a specific commit.
  • Format: OSCAL (a NIST standard), serialized as JSON.
  • Data license: the BSI data is licensed CC BY-SA 4.0. This server loads it at runtime and passes it through unmodified, so the BSI's attribution and share-alike terms apply to the data. See NOTICE.
  • Code license: the server code is Apache 2.0. See LICENSE.

Design notes

The server does not bind its tools directly to the raw OSCAL structure. A single mapping layer translates OSCAL into a small internal model; the tools work only against that model. When the BSI changes its format, only the mapper changes, not the tools. A CI schema test surfaces format drift loudly instead of returning silently wrong data, and a periodic drift monitor reports when the upstream BSI data has moved beyond the pinned commit.

Security

This is a security-adjacent tool, so supply-chain integrity matters. Releases are versioned (SemVer) and signed; dependencies are pinned. To report a vulnerability, see SECURITY.md.

Maintainer

Maintained by Samuel Blickle, who advises organizations on information security and compliance (samuelblickle.de). This is an independent open-source project (see the disclaimer above). Contributions are welcome — see CONTRIBUTING.md.

License

Code under Apache 2.0. BSI data under CC BY-SA 4.0 (attribution in NOTICE).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grundschutz_mcp-1.0.0.tar.gz (107.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

grundschutz_mcp-1.0.0-py3-none-any.whl (20.7 kB view details)

Uploaded Python 3

File details

Details for the file grundschutz_mcp-1.0.0.tar.gz.

File metadata

  • Download URL: grundschutz_mcp-1.0.0.tar.gz
  • Upload date:
  • Size: 107.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for grundschutz_mcp-1.0.0.tar.gz
Algorithm Hash digest
SHA256 e99f78ff64c8834a79f0ae4298ffd26aeedea990a3fd0a566a1eeba59b4efa43
MD5 e360a1e3e0d3bf0e418c5006b2d576cc
BLAKE2b-256 5b5b7071b24adc78306e5c7700ee6a220c3d7146a7be47b4a2555e139c06b371

See more details on using hashes here.

Provenance

The following attestation bundles were made for grundschutz_mcp-1.0.0.tar.gz:

Publisher: release.yml on SamuelBlickle/grundschutz-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grundschutz_mcp-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for grundschutz_mcp-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b77c20e3fc3b9427fc594b53adae1aefe4560a8e28b855faa61d643ada011f5a
MD5 82047ad6b03f96d19af41b3b4d48a8df
BLAKE2b-256 eb4c99aab47af1e7857faa96ad0001173144849ffaae988fbe8ecfb2aa01f988

See more details on using hashes here.

Provenance

The following attestation bundles were made for grundschutz_mcp-1.0.0-py3-none-any.whl:

Publisher: release.yml on SamuelBlickle/grundschutz-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page