Use the docs in your AI assistant
You can plug the React Bricks documentation straight into your AI assistant, so
it can search and read the docs while it helps you build. We offer two ways to do
this: a remote MCP server (best — gives the assistant live search + fetch
tools) and llms.txt files (plain-text docs any tool can ingest).
MCP server
Section titled “MCP server”The Model Context Protocol (MCP) server lets compatible assistants search the docs and pull in exactly the pages they need.
Endpoint
https://docs.reactbricks.com/mcpIt exposes two tools:
search_reactbricks_docs— full-text search across the documentationget_reactbricks_doc— fetch a page (or a single section) as clean Markdown
Add it to Claude
Section titled “Add it to Claude”claude mcp add --transport http reactbricks-docs https://docs.reactbricks.com/mcpAdd this to your claude_desktop_config.json (Settings → Developer → Edit
Config), then restart Claude Desktop:
{ "mcpServers": { "reactbricks-docs": { "type": "http", "url": "https://docs.reactbricks.com/mcp" } }}Most MCP-compatible clients accept a Streamable HTTP server. Point them at:
https://docs.reactbricks.com/mcpOnce connected, try asking: “Using the React Bricks docs, how do I create a nested repeater of bricks?“
llms.txt
Section titled “llms.txt”If your tool doesn’t support MCP, we also publish the docs as plain text following the llms.txt convention:
/llms.txt— overview + index/llms-full.txt— the complete documentation/llms-small.txt— a compact version
Paste any of these into an AI chat, or point a tool at the URL, to give it the full context of the React Bricks documentation.