For AI agents
Fetch design tokens over plain HTTP — no MCP client required. Use this page as the canonical index; all URLs below are absolute from https://brandbook.binary.tools.
Open preview No API key or login required.
https://brandbook.binary.tools/api/brandbooksid from the responsebrandbook.json (full tokens) or theme.css (generated CSS variables)curl -s https://brandbook.binary.tools/api/brandbooks | jq '.brandbooks[0].urls'
JSON index of all 153 brandbooks with stable resource URLs per entry.
Single entry with urls, embedded meta, and full brandbook JSON when scanned.
Replace {id} with a brandbook slug (e.g. aerc-tui).
| Resource | Path | Format |
|---|---|---|
| Detail page (human) | /brandbook/{id} | HTML |
| Live preview | /brandbook/{id}/preview | HTML |
| Full design tokens | /brandbook/{id}/brandbook.json | JSON |
| Gallery metadata | /brandbook/{id}/meta.json | JSON |
| Generated CSS variables | /brandbook/{id}/theme.css | CSS |
| Tailwind config | /brandbook/{id}/tailwind.config.js | JavaScript |
| API bundle | /api/brandbooks/{id} | JSON |
curl -s https://brandbook.binary.tools/brandbook/aerc-tui/brandbook.json
curl -s https://brandbook.binary.tools/brandbook/aerc-tui/theme.css
curl -s https://brandbook.binary.tools/api/brandbooks | jq '.brandbooks[] | select(.medium=="tui") | .id'
Copy into your agent system prompt or tool description:
Brandbook design systems are available over HTTP.
Catalog: https://brandbook.binary.tools/api/brandbooks
For each brandbook id, fetch:
- /brandbook/{id}/brandbook.json — colors, typography, components, voice
- /brandbook/{id}/theme.css — CSS custom properties
- /brandbook/{id}/preview — visual reference
Human-readable index: https://brandbook.binary.tools/agents
JSON-RPC tools are also available at https://brandbook.binary.tools/mcp and https://brandbook.binary.tools/mcp/v1
— no X-Api-Key header needed in this preview.
curl -s -X POST https://brandbook.binary.tools/mcp -H 'Content-Type: application/json' -d '{"jsonrpc":"2.0","id":1,"method":"get_theme_css","params":{"id":"aerc-tui"}}'