themes
Pack: rebrickable · Endpoint: https://gateway.pipeworx.io/rebrickable/mcp
Return the complete list of LEGO themes from Rebrickable (e.g. Star Wars, Technic, City). Returns theme id, name, and parent_id. Use to get valid theme_id values for filtering sets.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/rebrickable/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"themes","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('themes', {});
Response shape
| Field | Type | Description |
|---|---|---|
count | number | Total number of themes |
next | string | null | URL to next page |
previous | string | null | URL to previous page |
results | array | Array of theme objects |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "number",
"description": "Total number of themes"
},
"next": {
"type": [
"string",
"null"
],
"description": "URL to next page"
},
"previous": {
"type": [
"string",
"null"
],
"description": "URL to previous page"
},
"results": {
"type": "array",
"description": "Array of theme objects",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Theme ID"
},
"parent_id": {
"type": [
"number",
"null"
],
"description": "Parent theme ID"
},
"name": {
"type": "string",
"description": "Theme name"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"rebrickable": {
"url": "https://gateway.pipeworx.io/rebrickable/mcp"
}
}
}
See Getting Started for client-specific install steps.