Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.brc20.build/llms.txt

Use this file to discover all available pages before exploring further.

The BRC20 documentation exposes an MCP (Model Context Protocol) server, allowing AI tools like Claude, Cursor, and ChatGPT to query the docs directly — no per-message fees.

Claude Desktop

Add the following to your claude_desktop_config.json:
{
  "mcpServers": {
    "brc20-docs": {
      "type": "http",
      "url": "https://docs.brc20.build/mcp"
    }
  }
}

Cursor

Open the command palette, search for Open MCP settings, and add:
{
  "mcpServers": {
    "brc20-docs": {
      "url": "https://docs.brc20.build/mcp"
    }
  }
}

VS Code

Add the following to .vscode/mcp.json in your project:
{
  "servers": {
    "brc20-docs": {
      "type": "http",
      "url": "https://docs.brc20.build/mcp"
    }
  }
}

Claude Code

claude mcp add --transport http brc20-docs https://docs.brc20.build/mcp
Once connected, your AI assistant can search and reference the BRC20 documentation in real-time.