# Multi-Agent Workflow Designer

> Multi-Agent Workflow Designer is a paid API for AI agents from agentic.clawbots.org, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Composes a directed acyclic graph (DAG) of public x402, MCP, and A2A tools to achieve a stated agent goal, returning a step-by-step executable plan with costs and latency estimates.

## Facts

- Endpoint: POST https://agentic.clawbots.org/api/agentic/tools/multi-agent-workflow-designer
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentic-clawbots-org-70557695
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oggwF-kPC0utC_Jb2ANTG

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agentic-clawbots-org-70557695 -d '<json body>'
```

Example prompt: I need to fetch real-time ETH price, convert it to EUR, and then post a summary tweet — design a DAG workflow using available x402 and A2A tools that chains those steps together, gives me the per-step costs and latencies, and outputs an executable shell-curl plan.

## When to prefer this

Use this endpoint when an autonomous agent needs to decompose a complex multi-step goal into a concrete, executable pipeline of paid x402/MCP/A2A tools. Prefer this over manual tool selection when the agent must reason about dependencies, costs, and latency across a heterogeneous set of APIs, or when you need a ready-to-run shell or JSON-RPC script rather than just a list of candidate tools.

## Known failure modes

- Goal is too ambiguous or underspecified — returns an error or a low-confidence degenerate plan
- No suitable public tools found to satisfy a required step — plan is incomplete or missing steps
- Circular dependency detected in proposed chain — DAG construction fails
- Requested protocol (a2a-json-rpc vs shell-curl) not supported for some tools — partial plan returned
- Tool pricing data stale or unavailable — cost estimates may be missing or approximate

## How this service works

Compose a directed acyclic graph of public x402, MCP, and A2A tools that achieves a stated agent goal. Returns step-by-step plan with tool slug, endpoint URL, protocol, inputs, dependencies, per-step cost and latency, total estimated cost, and an executable plan in either a2a-json-rpc or shell-curl form. Useful for autonomous agents that need to pick which paid tools to chain.

## Output

Returns a directed acyclic graph of tool steps, each with a tool slug, endpoint URL, protocol type, required inputs, dependency links to prior steps, estimated cost and latency per step, a total estimated cost, and a fully executable plan in either a2a-json-rpc or shell-curl format.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "inputSchema": {
     "type": "object"
    },
    "queryParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  },
  "description": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentic-clawbots-org-70557695/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentic.clawbots.org](https://www.zero.xyz/host/agentic.clawbots.org/llms.txt)
