Connects to Rebrickable's LEGO database and exposes search operations for sets and parts. You'll need a free Rebrickable API key to use it. It's delivered through Pipeworx's gateway infrastructure, which means you can either connect to this specific Rebrickable endpoint or use their unified gateway that bundles 250+ data sources. The ask_pipeworx tool lets you query in plain English instead of calling search functions directly. Reach for this when you're building LEGO inventory apps, part compatibility checkers, or any project that needs programmatic access to LEGO catalog data including minifigures, themes, and color information.
Rebrickable MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
sets | Search sets. |
parts | Search parts. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"rebrickable": {
"url": "https://gateway.pipeworx.io/rebrickable/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Rebrickable data" })
The gateway picks the right tool and fills the arguments automatically.
MIT