← Back to Plugins
MCP Server MCP

agenthold

github By github 👁 1 views ▲ 0 votes

Shared versioned state for multi-agent AI workflows

Homepage Verified source GitHub

Install

uvx agenthold

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "pypi",
      "registryBaseUrl": "https://pypi.org",
      "identifier": "agenthold",
      "version": "0.10.0",
      "runtimeHint": "uvx",
      "transport": {
        "type": "stdio"
      },
      "packageArguments": [
        {
          "description": "Tool set: 'standard' (claim/release/status/wait) or 'advanced' (raw get/set/delete/watch/list/history/clear/export).",
          "default": "standard",
          "choices": [
            "standard",
            "advanced"
          ],
          "type": "named",
          "name": "--tools"
        },
        {
          "description": "Path to the SQLite database file.",
          "format": "filepath",
          "default": "./agenthold.db",
          "type": "named",
          "name": "--db"
        },
        {
          "description": "Transport to serve on: 'stdio' (default; one local subprocess per agent) or 'http' (one long-lived server many agents connect to over Streamable HTTP).",
          "default": "stdio",
          "choices": [
            "stdio",
            "http"
          ],
          "type": "named",
          "name": "--transport"
        },
        {
          "description": "HTTP bind address (default 127.0.0.1). Only used with --transport http.",
          "default": "127.0.0.1",
          "type": "named",
          "name": "--host"
        },
        {
          "description": "HTTP port (default 8417). Only used with --transport http.",
          "default": "8417",
          "type": "named",
          "name": "--port"
        }
      ]
    }
  ]
}
mcp model-context-protocol pypi

Comments

Sign in to leave a comment

Loading comments...