Skip to main content

Shared versioned state for multi-agent AI workflows

Project description

agenthold

Shared versioned state for multi-agent AI workflows. An MCP server that gives your agents a consistent, conflict-safe ground truth.

CI PyPI version Python 3.11+ License: MIT


The problem

When two agents update the same value at the same time, the second write silently overwrites the first. No exception is raised. The value is wrong. The system keeps running.

Without Agenthold - the silent overcommit problem

In the example above, two agents both read a $10,000 budget and each allocate from it independently. The total committed reaches $15,000. The budget dict never complains.

This is not a race condition in the traditional sense. It is a read-modify-write conflict: each agent reads a value, does work, and writes back a result that assumes nothing changed in between. With multiple agents running concurrently, that assumption is always wrong.


How it works

agenthold solves this with optimistic concurrency control (OCC), the same mechanism Postgres uses in UPDATE ... WHERE version = N and DynamoDB uses in conditional writes.

Every value stored in agenthold has a version number. When an agent writes, it passes the version it read. If the stored version has changed since the read, the write is rejected with a ConflictError that includes the current value. The agent re-reads, recalculates, and retries.

With Agenthold - conflict-safe allocation

The losing agent detects the conflict, re-reads the real remaining budget ($2,000), and adjusts its allocation. The total committed is always exactly $10,000. Every write is tracked.

OCC is the right fit for agent workflows because:

  • Agents do work between reads and writes (network calls, LLM inference). You cannot hold a database lock across that work.
  • Conflicts are rare. Retrying once is cheaper than acquiring a lock on every read.
  • The retry logic is simple, explicit, and fully in the agent's control.

Quick start

Install

pip install agenthold

Add to your MCP client config

{
  "mcpServers": {
    "agenthold": {
      "command": "agenthold",
      "args": ["--db", "/path/to/state.db"]
    }
  }
}

Works with Claude Desktop, Cursor, Continue, and any MCP-compatible client.

Use as a Python library

from agenthold.store import StateStore
from agenthold.exceptions import ConflictError

store = StateStore("./state.db")

# Write a value (first write, no conflict check needed)
store.set("order-1234", "status", "received", updated_by="intake-agent")

# Read it back; always get the version number too
record = store.get("order-1234", "status")
print(record.value)    # "received"
print(record.version)  # 1

# Write with conflict detection; pass the version you read
try:
    store.set(
        "order-1234", "status", "processing",
        updated_by="fulfillment-agent",
        expected_version=record.version,  # rejected if another agent wrote first
    )
except ConflictError as e:
    # Another agent wrote between your read and write.
    # e.detail has the current version, value, and who wrote it.
    record = store.get("order-1234", "status")
    # ... recalculate and retry

Tools

agenthold exposes eight tools over the Model Context Protocol.

agenthold_get

Read the current value of a state record.

{
  "namespace": "order-1234",
  "key": "status"
}
{
  "status": "ok",
  "namespace": "order-1234",
  "key": "status",
  "value": "processing",
  "version": 3,
  "updated_by": "fulfillment-agent",
  "updated_at": "2026-03-15T10:42:00.123456+00:00"
}

Returns {"status": "not_found"} if the key does not exist. No exception is raised.


agenthold_set

Write a value. expected_version is required — pass the version from a prior agenthold_get, or 0 for a key that should not yet exist.

{
  "namespace": "order-1234",
  "key": "status",
  "value": "shipped",
  "updated_by": "logistics-agent",
  "expected_version": 3
}

Success:

{
  "status": "ok",
  "namespace": "order-1234",
  "key": "status",
  "version": 4,
  "previous_version": 3
}

Conflict (another agent wrote before you):

{
  "status": "conflict",
  "namespace": "order-1234",
  "key": "status",
  "expected_version": 3,
  "actual_version": 5,
  "actual_updated_by": "returns-agent",
  "actual_updated_at": "2026-03-15T10:42:01.456+00:00",
  "hint": "Call agenthold_get to read the current state, merge your changes, and retry with the new version."
}

expected_version patterns:

Value Behaviour
0 Create-only guard — succeeds only if the key does not yet exist; conflicts if it does
N (from a prior agenthold_get) Conflict-safe write — rejected if another agent wrote since your read

force parameter: Set force: true to write unconditionally, bypassing conflict detection. When force is true, expected_version is ignored. Use this only for idempotent writes or initial seeding where overwriting is intentional.

{
  "namespace": "order-1234",
  "key": "status",
  "value": "shipped",
  "updated_by": "logistics-agent",
  "expected_version": 0,
  "force": true
}

agenthold_list

List all current state records in a namespace.

{ "namespace": "order-1234" }
{
  "status": "ok",
  "namespace": "order-1234",
  "count": 3,
  "records": [
    { "key": "reserved",  "value": true,        "version": 2, "updated_by": "inventory-agent", "updated_at": "..." },
    { "key": "status",    "value": "processing", "version": 3, "updated_by": "fulfillment-agent", "updated_at": "..." },
    { "key": "total",     "value": 80.99,        "version": 2, "updated_by": "pricing-agent",   "updated_at": "..." }
  ]
}

agenthold_history

Read the version history of a state record, newest first. Useful for debugging coordination issues and auditing writes.

{
  "namespace": "order-1234",
  "key": "status",
  "limit": 5
}
{
  "status": "ok",
  "namespace": "order-1234",
  "key": "status",
  "history": [
    { "version": 3, "value": "processing",  "updated_by": "fulfillment-agent", "updated_at": "...", "event_type": "write" },
    { "version": 2, "value": "validated",   "updated_by": "validation-agent",  "updated_at": "...", "event_type": "write" },
    { "version": 1, "value": "received",    "updated_by": "intake-agent",      "updated_at": "...", "event_type": "write" }
  ]
}

Each entry includes an event_type field: "write" for normal writes, "delete" for deletion events. Delete tombstones have value: null. An empty history list means no writes have been recorded for this key — the key may not exist. Use agenthold_get to check current state.


agenthold_delete

Permanently remove a state record. The deletion is written as a tombstone in agenthold_history so the full lifecycle of the key remains auditable.

{
  "namespace": "order-1234",
  "key": "status",
  "deleted_by": "cleanup-agent",
  "expected_version": 4
}

Success:

{
  "status": "ok",
  "namespace": "order-1234",
  "key": "status",
  "deleted_by": "cleanup-agent",
  "deleted_version": 4
}

Key not found (not an error — the key is absent either way):

{
  "status": "not_found",
  "namespace": "order-1234",
  "key": "status"
}

Conflict (another agent wrote since your last read):

{
  "status": "conflict",
  "namespace": "order-1234",
  "key": "status",
  "expected_version": 4,
  "actual_version": 5,
  "actual_updated_by": "fulfillment-agent",
  "actual_updated_at": "2026-03-15T10:42:01.456+00:00",
  "hint": "Call agenthold_get to read the current state, merge your changes, and retry with the new version."
}

expected_version is required — pass the version from a prior agenthold_get to prevent accidentally deleting a record that was updated since your read. Set force: true to delete unconditionally (bypasses conflict detection; expected_version is ignored).


agenthold_export

Export all live records and their complete version history for a namespace as a single JSON snapshot. Intended for debugging coordination issues and building audit trails.

{ "namespace": "order-1234" }
{
  "status": "ok",
  "namespace": "order-1234",
  "exported_at": "2026-03-16T10:00:00.123456+00:00",
  "record_count": 2,
  "history_count": 5,
  "records": [
    {
      "key": "status",
      "value": "shipped",
      "version": 3,
      "updated_by": "logistics-agent",
      "updated_at": "2026-03-16T09:59:00+00:00",
      "history": [
        {"version": 3, "value": "shipped",    "event_type": "write", "updated_by": "logistics-agent",   "updated_at": "..."},
        {"version": 2, "value": "processing", "event_type": "write", "updated_by": "fulfillment-agent", "updated_at": "..."},
        {"version": 1, "value": "received",   "event_type": "write", "updated_by": "intake-agent",      "updated_at": "..."}
      ]
    },
    {
      "key": "total",
      "value": 99.99,
      "version": 2,
      "updated_by": "pricing-agent",
      "updated_at": "2026-03-16T09:58:00+00:00",
      "history": [
        {"version": 2, "value": 99.99, "event_type": "write", "updated_by": "pricing-agent", "updated_at": "..."},
        {"version": 1, "value": 89.99, "event_type": "write", "updated_by": "intake-agent",  "updated_at": "..."}
      ]
    }
  ]
}

Records are sorted alphabetically by key. History entries are ordered newest first. history_count is the total across all keys and includes delete tombstones (which have value: null). Only live (non-deleted) keys are included; use agenthold_history to inspect deleted keys.

Empty or nonexistent namespace (not an error):

{
  "status": "ok",
  "namespace": "order-1234",
  "exported_at": "2026-03-16T10:00:00.123456+00:00",
  "record_count": 0,
  "history_count": 0,
  "records": []
}

agenthold_watch

Wait for a key's version to change, then return the new value. Polls every 200 ms.

Important: This call holds the agent turn until it returns. No other actions can be taken while waiting. Only use this when the agent has nothing else to do until the key changes.

{
  "namespace": "pipeline",
  "key": "step_1_result",
  "since_version": 0,
  "timeout_seconds": 30
}

Changed — key updated within timeout:

{
  "status": "ok",
  "namespace": "pipeline",
  "key": "step_1_result",
  "value": {"score": 0.92},
  "version": 1,
  "updated_by": "agent-a",
  "updated_at": "2026-03-16T10:00:01.123456+00:00"
}

Timeout — nothing changed:

{
  "status": "timeout",
  "namespace": "pipeline",
  "key": "step_1_result",
  "since_version": 0,
  "elapsed_seconds": 30.001,
  "hint": "The key did not change within the timeout. Retry with the same since_version, or call agenthold_get to check current state before deciding whether to wait again."
}

since_version patterns:

Value Behaviour
0 Wait for the very first write to a key (fires when version reaches 1)
N (from a prior agenthold_get) Wait until the key has been updated beyond version N

Pass timeout_seconds=0 to perform a single immediate check without sleeping — useful for an orchestrator that wants to know whether a key has changed between two other operations.


agenthold_clear_namespace

Delete all state records in a namespace in a single atomic operation. A tombstone is written to agenthold_history for every key removed.

{
  "namespace": "order-1234",
  "deleted_by": "cleanup-agent"
}

Success:

{
  "status": "ok",
  "namespace": "order-1234",
  "deleted_count": 3,
  "deleted_keys": ["items", "status", "total"],
  "deleted_by": "cleanup-agent"
}

Empty or nonexistent namespace (not an error):

{
  "status": "ok",
  "namespace": "order-1234",
  "deleted_count": 0,
  "deleted_keys": [],
  "deleted_by": "cleanup-agent"
}

deleted_keys is sorted alphabetically. This operation has no conflict guard — it deletes unconditionally. If deleted_keys contains unexpected entries, use agenthold_history on those keys to investigate what was written and by whom.


Conflict detection

The read-modify-write pattern with expected_version is the core of agenthold. Here is the canonical retry loop:

from agenthold.store import StateStore
from agenthold.exceptions import ConflictError

store = StateStore("./state.db")

record = store.get("campaign", "budget")   # read once before doing work
do_expensive_work()                         # LLM call, API request, etc.

while True:
    new_value = compute_new_value(record.value)
    try:
        store.set(
            "campaign", "budget", new_value,
            updated_by="my-agent",
            expected_version=record.version,
        )
        break   # write succeeded
    except ConflictError:
        record = store.get("campaign", "budget")   # re-read and retry

Why this works: The version number is the contract. If the stored version has advanced since your read, another agent wrote first. You take the current value, recalculate, and try again. The number of retries is bounded by the number of concurrent writers. In practice, agents almost never conflict more than once.

Why not locks? Locks require a lease mechanism (what happens if the agent crashes holding a lock?), add latency on every read, and interact badly with the long I/O waits inherent in agent workflows. OCC pays a cost only when there actually is a conflict.


Examples

Two worked examples are included, each with a "before" and "after" script.

Order processing

Two agents update the same order record concurrently: an inventory agent marks it reserved and sets the status, a pricing agent applies a discount.

# The problem: one agent silently overwrites the other
uv run python examples/order_processing/without_agenthold.py

# The solution: conflict detection + retry
uv run python examples/order_processing/with_agenthold.py

Budget allocation

Two agents draw from a shared marketing budget. Without conflict detection, the budget is silently overcommitted. With agenthold, the losing agent re-reads the remaining balance and adjusts its allocation.

# The problem: $10,000 budget committed to $15,000 of spend
uv run python examples/budget_allocation/without_agenthold.py

# The solution: exact allocation, full audit trail
uv run python examples/budget_allocation/with_agenthold.py

Configuration

agenthold --db ./state.db
Flag Default Description
--db ./agenthold.db Path to the SQLite database file. Use :memory: for an in-process store (testing only; data is lost when the process exits).

The database file is created automatically on first run. Back it up like any other SQLite file.


Development

git clone https://github.com/edobusy/agenthold.git
cd agenthold
uv sync --all-extras --dev

Run the tests:

uv run pytest tests/ -v

Check coverage:

uv run pytest tests/ --cov=agenthold --cov-report=term-missing

Lint and type-check:

uv run ruff check src/ tests/
uv run ruff format src/ tests/
uv run mypy src/

CI runs on Python 3.11 and 3.12 on every push to main.


Technical notes

These notes are here for engineers who want to understand the design decisions.

Why SQLite? SQLite is the right tool for this scope. It is zero-dependency, ships in the Python stdlib, and runs everywhere. WAL mode is enabled so that read-only operations (exports, watches) do not block writers across processes. Write transactions use BEGIN IMMEDIATE to acquire the write lock upfront, ensuring OCC conflict detection works correctly even when multiple agenthold processes share the same database file. busy_timeout is set to 5 seconds so a second writer waits rather than failing immediately. Postgres adds an ops dependency with no benefit at this scale. The storage backend is behind a clean interface (StateStore) that can be swapped for Postgres when the need arises. Choosing a simple tool deliberately is not a limitation.

Why OCC instead of pessimistic locking? Locks require the holder to release them, which means the system must handle crashes, timeouts, and stale holders. That complexity is not worth it when conflicts are rare. OCC pays a cost only when a conflict actually occurs: one extra read and one retry. For multi-agent workflows where agents do significant work between reads and writes (LLM inference, API calls, tool execution), OCC is the correct choice.

What the versioning guarantees: Each key has a version that starts at 1 and increments by exactly 1 on every write. The state_history table is append-only and records every write before the live record is updated, so a crash between the two writes leaves history consistent. Deletions also write a tombstone entry to state_history (with event_type: "delete") before removing the live record, so the full lifecycle of a key is visible in history. The ordering guarantee is per-key, not global; two different keys can have their versions updated in any order.

What would change for production scale: Three things. First, replace SQLite with Postgres: better concurrent write throughput, replication, and managed hosting. The StateStore interface is already designed to make this a contained change. Second, add authentication: the current server trusts any caller on the stdio transport. A production deployment needs at minimum an API key check. Third, add the HTTP transport: the MCP SDK supports StreamableHTTPServer, which would let remote agents connect over the network instead of requiring a local process.


License

MIT. 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

agenthold-0.2.0.tar.gz (1.4 MB view details)

Uploaded Source

Built Distribution

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

agenthold-0.2.0-py3-none-any.whl (20.8 kB view details)

Uploaded Python 3

File details

Details for the file agenthold-0.2.0.tar.gz.

File metadata

  • Download URL: agenthold-0.2.0.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for agenthold-0.2.0.tar.gz
Algorithm Hash digest
SHA256 72aa736a9349c5173c5b602dcd665ce30c5e9dce2b5fde805b849f8879e1e892
MD5 09a118bb3105034f272ee71b8eb1715c
BLAKE2b-256 6f5f1bf8ad409616fcc065cc17d75eb4bc9f5bd6e0d060ff84136c90f242fd1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for agenthold-0.2.0.tar.gz:

Publisher: publish.yml on edobusy/agenthold

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

File details

Details for the file agenthold-0.2.0-py3-none-any.whl.

File metadata

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

File hashes

Hashes for agenthold-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 264583c42c1405a10e9e896dd2952fe5175408bf6acabbb3cee7679fa6eee3ca
MD5 d89ee6452ab705ac52c97fc1cfd32778
BLAKE2b-256 b5acacbb7b37132f4398726be9e4dfb4d8755078ffcc6a025958e935a7dfb24d

See more details on using hashes here.

Provenance

The following attestation bundles were made for agenthold-0.2.0-py3-none-any.whl:

Publisher: publish.yml on edobusy/agenthold

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