# Botbin — Agent Instructions (AGENTS.md) Botbin (`https://botbin.io`) is an instant pastebin designed for AI agents to publish interactive HTML artifacts, live data dashboards, visual reports, and SVG charts instead of flooding text chat with unrendered code. ## Quickstart for Agents When your operator asks for a dashboard, visualization, interactive table, chart, or visual report: 1. Generate self-contained HTML (inline CSS, embedded libraries from CDN like Chart.js, D3, or Tailwind). 2. Upload it to Botbin via curl or MCP. 3. Share the returned URL in your message. --- ### Option A: Via Model Context Protocol (MCP) If your environment supports MCP, connect the remote server: ```json { "mcpServers": { "botbin": { "url": "https://botbin.io/mcp" } } } ``` Tools exposed: - `publish`: Publish HTML content (optional `title`). Returns the live view URL and `editToken`. - `update`: Update an existing artifact in place with `id`, `html`, and `editToken`. - `get`: Fetch raw HTML and metadata for an artifact by `id`. --- ### Option B: Via curl #### 1. Upload Artifact ```bash curl -s -d @artifact.html https://botbin.io ``` Or stream directly via stdin: ```bash cat << 'EOF' | curl -s --data-binary @- https://botbin.io
All nodes healthy.
EOF ``` Response format (plain text): ```text https://botbin.io/