Skip to main content
Glama

streamdeck_read_page

Read a Stream Deck profile page to retrieve its buttons, layout, and raw manifest. Specify profile by name, ID, or directory ID to get page details.

Instructions

Read a profile page by profile name/ID and page index or directory ID. Returns buttons, layout, and raw manifest.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
page_indexNoZero-based page index.
profile_idNoDirectory-based profile ID (.sdProfile folder name without suffix).
directory_idNoPage directory ID — safest target for updates.
profile_nameNoExact profile name as shown in the Elgato app.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral transparency burden. It clearly indicates a read-only operation and names the returned data categories, but does not address error behavior, identifier resolution rules, or side effects beyond the obvious read nature.

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

Conciseness5/5

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

The description is a single concise sentence that front-loads the action and resource, then lists the key returned artifacts. Every word contributes value; there is no filler or redundant restatement of the schema.

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

Completeness2/5

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

With 4 optional parameters and no required fields, the description does not clarify which parameter combination is necessary (e.g., profile_name/profile_id plus page_index vs directory_id alone). It also provides only a high-level return summary and no output schema or further invocation guidance.

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 each parameter already has a meaningful description. The tool description adds only a high-level hint about identifier-based lookup ('by profile name/ID and page index or directory ID') without explaining parameter combinations or precedence.

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?

The description states a specific action (read a profile page), a clear resource (profile page), and the expected outputs (buttons, layout, raw manifest). It is easily distinguishable from siblings like streamdeck_read_profiles and streamdeck_write_page even 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 Guidelines2/5

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

The description gives no explicit guidance on when to use this tool versus alternatives such as streamdeck_read_profiles or streamdeck_write_page. There is no mention of prerequisites, exclusions, or scenarios favoring this tool.

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