2,500+ MCP servers ready to use
Vinkius

Rebrickable LEGO MCP Server for Google ADK 11 tools — connect in under 2 minutes

Built by Vinkius GDPR 11 Tools SDK

Google Agent Development Kit (ADK) is Google's framework for building production AI agents. Add Rebrickable LEGO as an MCP tool provider through Vinkius and your ADK agents can call every tool with full schema introspection.

Vinkius supports streamable HTTP and SSE.

python
from google.adk.agents import Agent
from google.adk.tools.mcp_tool import McpToolset
from google.adk.tools.mcp_tool.mcp_session_manager import (
    StreamableHTTPConnectionParams,
)

# Your Vinkius token. get it at cloud.vinkius.com
mcp_tools = McpToolset(
    connection_params=StreamableHTTPConnectionParams(
        url="https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
    )
)

agent = Agent(
    model="gemini-2.5-pro",
    name="rebrickable_lego_agent",
    instruction=(
        "You help users interact with Rebrickable LEGO "
        "using 11 available tools."
    ),
    tools=[mcp_tools],
)
Rebrickable LEGO
Fully ManagedVinkius Servers
60%Token savings
High SecurityEnterprise-grade
IAMAccess control
EU AI ActCompliant
DLPData protection
V8 IsolateSandboxed
Ed25519Audit chain
<40msKill switch
Stream every event to Splunk, Datadog, or your own webhook in real-time

* Every MCP server runs on Vinkius-managed infrastructure inside AWS - a purpose-built runtime with per-request V8 isolates, Ed25519 signed audit chains, and sub-40ms cold starts optimized for native MCP execution. See our infrastructure

About Rebrickable LEGO MCP Server

Connect to the Rebrickable LEGO API and explore the entire LEGO catalog through natural conversation.

Google ADK natively supports Rebrickable LEGO as an MCP tool provider. declare Vinkius Edge URL and the framework handles discovery, validation, and execution automatically. Combine 11 tools with Gemini's long-context reasoning for complex multi-tool workflows, with production-ready session management and evaluation built in.

What you can do

  • Sets — Search and browse LEGO sets by theme, year or part number with piece counts and images
  • Parts — Explore the official LEGO parts catalog with part numbers, names and categories
  • Minifigures — Discover minifigures with their set numbers, themes and images
  • Themes — Browse all LEGO themes and sub-themes with set counts
  • Colors — List all LEGO colors with their IDs, names and RGB values
  • Set Parts — Get complete parts inventories for any LEGO set including spare parts

The Rebrickable LEGO MCP Server exposes 11 tools through the Vinkius. Connect it to Google ADK in under two minutes — no API keys to rotate, no infrastructure to provision, no vendor lock-in. Your configuration, your data, your control.

How to Connect Rebrickable LEGO to Google ADK via MCP

Follow these steps to integrate the Rebrickable LEGO MCP Server with Google ADK.

01

Install Google ADK

Run pip install google-adk

02

Replace the token

Replace [YOUR_TOKEN_HERE] with your Vinkius token

03

Create the agent

Save the code above and integrate into your ADK workflow

04

Explore tools

The agent will discover 11 tools from Rebrickable LEGO via MCP

Why Use Google ADK with the Rebrickable LEGO MCP Server

Google ADK provides unique advantages when paired with Rebrickable LEGO through the Model Context Protocol.

01

Google ADK natively supports MCP tool servers. declare a tool provider and the framework handles discovery, validation, and execution

02

Built on Gemini models, ADK provides long-context reasoning ideal for complex multi-tool workflows with Rebrickable LEGO

03

Production-ready features like session management, evaluation, and deployment come built-in. not bolted on

04

Seamless integration with Google Cloud services means you can combine Rebrickable LEGO tools with BigQuery, Vertex AI, and Cloud Functions

Rebrickable LEGO + Google ADK Use Cases

Practical scenarios where Google ADK combined with the Rebrickable LEGO MCP Server delivers measurable value.

01

Enterprise data agents: ADK agents query Rebrickable LEGO and cross-reference results with internal databases for comprehensive analysis

02

Multi-modal workflows: combine Rebrickable LEGO tool responses with Gemini's vision and language capabilities in a single agent

03

Automated compliance checks: schedule ADK agents to query Rebrickable LEGO regularly and flag policy violations or configuration drift

04

Internal tool platforms: build self-service agent platforms where teams connect their own MCP servers including Rebrickable LEGO

Rebrickable LEGO MCP Tools for Google ADK (11)

These 11 tools become available when you connect Rebrickable LEGO to Google ADK via MCP:

01

get_minifig

g. "sw0001-1"). Returns the minifig name, theme, year, piece count and image URLs. Get details for a specific LEGO minifigure

02

get_part

g. "3001" for a 2x4 brick). Returns the part name, category, image URLs and available colors. Get details for a specific LEGO part

03

get_part_colors

Returns color IDs, color names and availability info. Useful for finding which colors a part is available in for MOC building. Get available colors for a LEGO part

04

get_set

g. "75192-1"). Returns the set name, year, theme, piece count, minifig count, image URLs and related info. Set numbers follow the format "NNNN-N" where NNNN is the set number and N is the variant. Get details for a specific LEGO set

05

get_set_parts

Each entry includes the part number, color ID, quantity and whether it's a spare part. Optionally include minifig parts. Use list_colors and list_parts to resolve color and part details. Get the parts inventory for a LEGO set

06

get_theme

Returns the theme name, parent theme (if sub-theme) and set count. Get details for a specific LEGO theme

07

list_colors

Useful for understanding color availability in sets and MOC building. List all LEGO colors in the catalog

08

list_minifigs

Returns minifig numbers, names, themes, year and image URLs. Optionally filter by part number. Use pagination with page and page_size (max 1000). Search LEGO minifigures

09

list_parts

Returns part numbers, names, categories and image URLs. Optionally filter by part number pattern. Use pagination with page and page_size (max 1000). Search LEGO parts in the catalog

10

list_sets

Optionally filter by theme ID, year, or part number. Returns set numbers, names, year, theme, piece count and image URLs. Use pagination with page and page_size (max 1000 per request). Search LEGO sets in the Rebrickable catalog

11

list_themes

g. Star Wars, City, Technic) and their sub-themes. Each theme includes its ID, name, parent theme ID (for sub-themes) and set count. Optionally filter by parent theme ID to get sub-themes of a specific theme. List LEGO themes and sub-themes

Example Prompts for Rebrickable LEGO in Google ADK

Ready-to-use prompts you can give your Google ADK agent to start working with Rebrickable LEGO immediately.

01

"Find all LEGO Star Wars sets from 2024."

02

"Show me the parts inventory for set 10497 (Galaxy Explorer)."

03

"What colors is LEGO part 3001 (2x4 brick) available in?"

Troubleshooting Rebrickable LEGO MCP Server with Google ADK

Common issues when connecting Rebrickable LEGO to Google ADK through the Vinkius, and how to resolve them.

01

McpToolset not found

Update: pip install --upgrade google-adk

Rebrickable LEGO + Google ADK FAQ

Common questions about integrating Rebrickable LEGO MCP Server with Google ADK.

01

How does Google ADK connect to MCP servers?

Import the MCP toolset class and pass the server URL. ADK discovers and registers all tools automatically, making them available to your agent's tool-use loop.
02

Can ADK agents use multiple MCP servers?

Yes. Declare multiple MCP tool providers in your agent configuration. ADK merges all tool schemas and the agent can call tools from any server in a single turn.
03

Which Gemini models work best with MCP tools?

Gemini 2.0 Flash and Pro models both support function calling required for MCP tools. Flash is recommended for latency-sensitive use cases, Pro for complex reasoning.

Connect Rebrickable LEGO to Google ADK

Get your token, paste the configuration, and start using 11 tools in under 2 minutes. No API key management needed.