{
  "name": "llm-workbench",
  "version": "1.0.0",
  "description": "Drive LLM Workbench runs (start, list, get, write artifact, resolve gate, export bundle) over MCP.",
  "transport": "streamable-http",
  "endpoint": "https://www.llmworkbench.io/api/mcp",
  "auth": {
    "type": "clerk-bearer",
    "documentation": "https://www.llmworkbench.io/agents.md#authentication"
  },
  "tools": [
    {
      "name": "list_runs",
      "description": "Return SavedRunMeta[] for the caller's tenant"
    },
    {
      "name": "get_run",
      "description": "Return a full RunBundle for a runId"
    },
    {
      "name": "start_run",
      "description": "Start a new run from a workflow id"
    },
    {
      "name": "resolve_gate",
      "description": "Resolve a human gate"
    },
    {
      "name": "write_artifact",
      "description": "Write or patch a typed artifact"
    },
    {
      "name": "export_bundle",
      "description": "Return a tamper-evident RunBundle JSON"
    }
  ]
}