Add Circuits component
tinkercad_add_componentSearch the Tinkercad Circuits parts panel and place a component at specified canvas coordinates, returning an updated circuit snapshot for wiring.
Instructions
Search the Circuits parts panel and drop a component onto the canvas.
Args:
component (string): Catalog id or search text (led, resistor, Arduino Uno R3)
x (number): Canvas X in pixels (default 320)
y (number): Canvas Y in pixels (default 240)
response_format
Returns: Updated circuit snapshot. Prefer ids from the returned components list for later wiring.
Error Handling:
Unknown part: call tinkercad_list_components
Editor closed: call tinkercad_open_circuit first
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | No | Drop X on the breadboard canvas, pixels from the left | |
| y | No | Drop Y on the breadboard canvas, pixels from the top | |
| component | Yes | Catalog id or search text. Examples: arduino_uno_r3, led, resistor | |
| response_format | No | Output format: markdown for humans, json for machine processing | markdown |