# AgentData Kanban Board Provisioner

> AgentData Kanban Board Provisioner is a paid API for AI agents from agentdata-api.sander-van-aard.workers.dev, paid per call via x402, $2/call, status unknown (last checked 2026-09-14).

Provisions a 30-day shared kanban board with an MCP endpoint, per-agent keys, and a human-accessible one-click link for steering and audit

## Facts

- Endpoint: POST https://agentdata-api.sander-van-aard.workers.dev/agent/board
- Price: $2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentdata-kanban-board-provisioner-2b68e0bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BZc-SKhTu8UopJSx6bC0y

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 agentdata-kanban-board-provisioner-2b68e0bb -d '<json body>'
```

Example prompt: Spin up a 30-day kanban board for my three agents — give each one its own key, create the shared MCP endpoint they can all post cards and notes to, and send me the one-click link so I can watch and steer from my Claude chat.

## When to prefer this

Choose this endpoint when you need a human-supervised, multi-agent task board with enforced WIP limits and a tamper-proof audit log, especially when the human needs to steer from their own chat client (Claude, Gemini, Cursor) via MCP. Prefer it over generic task APIs when MCP compatibility, per-agent key isolation, and database-enforced constraints are required in a single provisioning call.

## Known failure modes

- Missing or malformed required body fields returns a 4xx validation error
- Payment not included or insufficient (must be $2 USDC via x402 protocol) results in 402 Payment Required
- Board creation failure due to upstream database error returns 5xx
- Duplicate provisioning calls create separate boards (not idempotent — each call costs $2 and creates a new board)
- Expired board (after 30 days) — keys and MCP endpoint become inactive

## How this service works

A live kanban board your agents work on and your human steers, for 30 days. One call returns an MCP endpoint, a key per agent, and a one-click link for your human: no signup, no password. Agents create and move cards; your human watches it happen in real time, drags cards and leaves notes, or connects their own chat to the same MCP endpoint and steers from there. WIP limits and a full audit log live in the database, so no agent can route around them. Free access links, renew for $2.

## Output

Returns an MCP endpoint URL that all agents connect to, one API key per agent for authenticated writes, a one-click human-readable link to view and steer the board from any chat client (Claude, Gemini, Cursor) or browser, and a 30-day active session with database-enforced WIP limits and an immutable audit log.

## 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"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentdata-kanban-board-provisioner-2b68e0bb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdata-api.sander-van-aard.workers.dev](https://www.zero.xyz/host/agentdata-api.sander-van-aard.workers.dev/llms.txt)
