get_element
Fetch element type details—summary, specials, skeleton, and example—for one or many types in one call, reducing round trips.
Instructions
Returns detailed usage for one element type — or for many in a single call (BATCH MODE): summary, when to use it, key specials fields, a SPARSE skeleton node (the exact shape to emit — the server hydrates omitted boilerplate), and (for common types) a filled example. Pass types: [...] to fetch a whole section's worth of element types at once (e.g. ['section','text-block','image-block','button']) — returns { elements: { [type]: details } } and saves a round-trip per type. type (single) returns the doc directly for backward compatibility.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Single element type — backward-compat. Prefer `types` when fetching more than one. | |
| types | No | Multiple element types to fetch in one call (recommended for a section that needs several types, e.g. ['section','text-block','button','form','input']). |