Skip to main content

Developer-first model inventory and governance framework for SR 11-7, EU AI Act, and NIST AI RMF compliance

Project description

model-ledger

git for models — know what models you have deployed, where they run, what they depend on, and what changed.

License Python PyPI Docs

📖 Documentation · Quickstart · Concepts · Governance


model-ledger is a model inventory for any organization with deployed models. It discovers models, heuristic rules, and ETL across your platforms, maps the dependency graph automatically, and records every change as an immutable event. Unlike registries tied to a single platform (MLflow, SageMaker, W&B), it spans all of them — as one connected graph — and it's built to be driven by AI agents through a native MCP server.

Install

pip install model-ledger

The graph builds itself

Every model is a DataNode with typed input and output ports. When an output port name matches an input port name, connect() creates the dependency edge — no hand-wiring.

from model_ledger import Ledger, DataNode

ledger = Ledger()

ledger.add([
    DataNode("segmentation", platform="etl",      outputs=["customer_segments"]),
    DataNode("fraud_scorer", platform="ml",       inputs=["customer_segments"], outputs=["risk_scores"]),
    DataNode("fraud_alerts", platform="alerting", inputs=["risk_scores"]),
])
ledger.connect()

ledger.trace("fraud_alerts")
# ['segmentation', 'fraud_scorer', 'fraud_alerts']

Every mutation is recorded as an immutable Snapshot — an append-only event log that gives you full history and point-in-time reconstruction, because nothing is overwritten.

Talk to your inventory

The MCP server is a first-class surface — point Claude (or any MCP agent) at it:

pip install "model-ledger[mcp]"
claude mcp add model-ledger -- model-ledger mcp --demo

You: if we deprecate customer_features, what breaks?

Claude: 3 models consume it directly, 2 more transitively.

Documentation

Everything lives at block.github.io/model-ledger — and it can't drift, because the API reference is generated from source and every example runs in CI:

  • Quickstart — install to your first dependency trace in 60 seconds
  • Concepts — DataNode, Snapshot, and Composite, in three ideas
  • Agents (MCP) — the eight-tool agent surface, with a worked transcript
  • Connectors — discover from SQL, REST, GitHub, or your own platform
  • Backends — in-memory, SQLite, JSON, Snowflake, or remote HTTP
  • Governance — how the primitives map to SR 26‑2, the EU AI Act, and NIST
  • API reference — generated from the source

For organizations

The OSS core handles discovery, graph building, change tracking, storage, and the agent protocol. Your internal package provides the thin layer on top — connector configs, custom connectors for internal platforms, authentication, and compliance profiles. Thin config and credentials, not reimplemented logic.

Contributing

See CONTRIBUTING.md. All commits require DCO sign-off.

License

Apache-2.0. See LICENSE.

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

model_ledger-0.7.7.tar.gz (268.6 kB view details)

Uploaded Source

Built Distribution

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

model_ledger-0.7.7-py3-none-any.whl (123.1 kB view details)

Uploaded Python 3

File details

Details for the file model_ledger-0.7.7.tar.gz.

File metadata

  • Download URL: model_ledger-0.7.7.tar.gz
  • Upload date:
  • Size: 268.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for model_ledger-0.7.7.tar.gz
Algorithm Hash digest
SHA256 14ce8d6d71fe30aa0c5680c57a060615f31dfabba13d1dcd4e078468db0342c5
MD5 617f1540215a5a6de409bb2b765f130c
BLAKE2b-256 4b3773271713d3c432f538e58451fd80f33ad46648a0c4334eada7d6cd47967c

See more details on using hashes here.

Provenance

The following attestation bundles were made for model_ledger-0.7.7.tar.gz:

Publisher: release.yml on block/model-ledger

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

File details

Details for the file model_ledger-0.7.7-py3-none-any.whl.

File metadata

  • Download URL: model_ledger-0.7.7-py3-none-any.whl
  • Upload date:
  • Size: 123.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for model_ledger-0.7.7-py3-none-any.whl
Algorithm Hash digest
SHA256 6e6ce624083cd9af94d0f27e447802b03dba53078dd2002a254aa38a1f1535b7
MD5 5f74c5f2073bc9cc08f3f65ebf88e59f
BLAKE2b-256 dc6ab53af769aa1ab634b27b8211231777f838a0a3fd92aacb16903e630eb2c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for model_ledger-0.7.7-py3-none-any.whl:

Publisher: release.yml on block/model-ledger

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