colors

Pack: rebrickable · Endpoint: https://gateway.pipeworx.io/rebrickable/mcp

Return the complete list of LEGO colors from Rebrickable with color id, name, RGB hex code, and is_trans flag. Use to get valid color_id values for filtering parts.

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":"colors","arguments":{}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('colors', {});

Response shape

FieldTypeDescription
countnumberTotal number of colors
nextstring | nullURL to next page
previousstring | nullURL to previous page
resultsarrayArray of color objects
Full JSON Schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Total number of colors"
    },
    "next": {
      "type": [
        "string",
        "null"
      ],
      "description": "URL to next page"
    },
    "previous": {
      "type": [
        "string",
        "null"
      ],
      "description": "URL to previous page"
    },
    "results": {
      "type": "array",
      "description": "Array of color objects",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Color ID"
          },
          "name": {
            "type": "string",
            "description": "Color name"
          },
          "rgb": {
            "type": [
              "string",
              "null"
            ],
            "description": "RGB hex code"
          },
          "is_trans": {
            "type": "boolean",
            "description": "Whether color is transparent"
          }
        }
      }
    }
  }
}

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.

Regenerated from source · build July 6, 2026