Skip to main content
Glama
DChuhin
by DChuhin

create_frame

Create a named rectangular frame on a Miro board to group related items into sections, then use the returned frame ID to place content inside it.

Instructions

Creates a named frame (a rectangular container) on the board. Frames are used to group related content into sections. Use this before populating a new area with items so they can be logically grouped. Returns the frame ID which you can then use to place items inside it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
xYesPosition of frame center
yYesPosition of frame center
titleYesFrame label shown at the top
widthNoFrame width (default 1200)
heightNoFrame height (default 800)
board_idYesMiro board ID
background_colorNoHex color e.g. #ffffff

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It usefully discloses that the call 'Returns the frame ID which you can then use to place items inside it,' which substitutes for the missing output schema. However, it says nothing about permissions, side effects, or board-state requirements for a write operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, front-loaded with the core action and followed by grouping rationale and return value. Every sentence contributes, though the framing could be marginally tighter.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a creation tool with full schema coverage and no output schema, the description covers purpose, ordering guidance, and the returned ID. The absence of any mention of permissions or board-access prerequisites is the only notable gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all seven parameters are already documented in the schema. The description adds no positional, sizing, or color detail beyond what the schema provides, making the baseline 3 appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource ('Creates a named frame') and immediately clarifies what that resource is ('a rectangular container'), preventing confusion with sibling tools like create_shape or create_sticky_note. An agent can distinguish this tool without opening the schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives clear when-to-use guidance: 'Use this before populating a new area with items so they can be logically grouped.' It establishes the ordering context relative to item-creation tools, though it names no explicit alternative or exclusion condition.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.