Inspect open circuit
tinkercad_get_circuitReads the open Circuits editor and returns components, pins, wires, code, serial, and simulation state. Use after every build step to get real component IDs for later edit and wire tools.
Instructions
Read the currently open Circuits editor: components, pins, wires, code, serial, and simulation flag.
Call this after every build step so later tools use real component ids.
Args:
include_code (boolean, default true)
include_serial (boolean, default true)
include_pins (boolean, default true)
response_format ('markdown' | 'json')
Returns: Structured circuit state. Component ids from this tool are required by move/delete/wire tools.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_code | No | Include Arduino sketch text | |
| include_pins | No | Include pin coordinates for each component | |
| include_serial | No | Include serial monitor text if visible | |
| response_format | No | Output format: markdown for humans, json for machine processing | markdown |