MCP server

Native Model Context Protocol server. Point any MCP-compatible client at the endpoint and human review becomes a set of tools.

Connect

Native Model Context Protocol server over Streamable HTTP (not legacy SSE). Point any MCP-compatible client at the endpoint and human review becomes a set of tools.

Endpoint: https://mcp.agentfabric.dev

{
  "mcpServers": {
    "agentfabric": {
      "url": "https://mcp.agentfabric.dev",
      "type": "http"
      // Optional: call create_tenant (no auth) to get an API key,
      // then reconnect with it to authenticate other requests:
      // "headers": { "x-api-key": "ak_your_api_key" }
    }
  }
}

Set "type": "http" (or your client’s Streamable HTTP equivalent) so the client does not default to legacy SSE. OpenClaw uses "transport": "streamable-http" in its mcp.servers config instead of mcpServers.

When x-api-key is set on the MCP connection, do not pass api_key in tool arguments — auth is header-only.

MCP tools

ToolAccessPurpose
create_tenant none Sign up; returns admin + consumer API keys
create_review_request consumer+ Send content to human reviewers
get_review_request consumer+ Poll request status, outcome, comments, events
list_review_requests consumer+ List requests; optional external_id
list_review_items consumer+ List items by external_id (required)
get_review_comments consumer+ List comments; optional item_id, status
resolve_review_comment consumer+ Mark a comment resolved
unresolve_review_comment consumer+ Reopen a resolved comment
cancel_review_request consumer+ Cancel an open request
add_reviewer consumer+ Add a reviewer (email + optional name)
remind_reviewers consumer+ Re-email pending reviewers; optional emails
create_user / list_users admin Manage dashboard users
create_api_key / list_api_keys admin Create and list API keys

Tool results are the JSON data payload from the corresponding REST endpoint.

MCP tool scopes

ConnectionVisible tools
No API key Only create_tenant
Consumer key Review tools (not create_tenant)
Admin key Review tools + user/API-key tools (not create_tenant)