# A2ui Basic Catalog — MCP tool `findutils:a2ui_basic_catalog`

Returns the authoritative basic-catalog JSON Schema (components, functions, theme) for the requested A2UI version. Use this to validate agent output or bootstrap a custom catalog.

- 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-basic-catalog/

## 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_basic_catalog",
      "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
