# A2ui Spec — MCP tool `findutils:a2ui_spec`

Returns A2UI protocol documentation for a given spec version and section. Sections: protocol, components, data-binding, actions, catalogs, custom-functions, renderers, renderer-contract, transports, mcp-apps, agents, sdk-architecture, ecosystem. Use this when authoring A2UI payloads to get authoritative reference material without guessing.

- Category: developer
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- Reference page: https://findutils.com/mcp/a2ui-spec/

## Connect

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Claude Desktop (`claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}
```

## Call the tool (verified example)

```bash
curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "a2ui_spec",
      "arguments": {
        "version": "v0.9"
      }
    }
  }'
```

Example arguments (verified):

```json
{
  "version": "v0.9"
}
```

---
Full catalog: POST https://mcp.findutils.com/ with method `tools/list` · https://findutils.com/mcp/ · https://findutils.com/llms.txt
