Skip to main content
Glama

toggle_fullscreen

Set or toggle fullscreen or maximize state for focused windows in Hyprland. Choose action (set, unset, toggle) and mode (fullscreen, maximize).

Instructions

Set fullscreen state. mode: "fullscreen"|"maximize", action: "set"|"unset"|"toggle".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeNofullscreen
actionNotoggle

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It reveals only that it can set/unset/toggle between fullscreen and maximize, but it does not disclose the target (active window, workspace, monitor), failure conditions, or side effects. The core mutation is clear, but the behavioral context is incomplete.

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 compact two-clause sentence with no filler: purpose first, then the parameter value list. Every segment contributes to selecting values correctly.

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

Completeness3/5

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

For a simple two-parameter tool with an output schema, the essential values are present, and an agent can construct basic calls. However, the lack of usage or behavioral context and the missing target-window semantics leave meaningful gaps for an agent deciding when and how to invoke the tool.

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

Parameters4/5

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

With 0% schema description coverage and no enums in the schema, the description adds critical meaning by enumerating the valid strings for both mode and action. It maps each value directly to its parameter name, making the tool immediately callable. It does not define each value's behavior, though the terms are largely self-explanatory.

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

Purpose4/5

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

The description clearly states the verb and resource: 'Set fullscreen state.' It adds the applicable mode and action values, and the name plus description distinguish it from sibling toggle_* tools like toggle_floating/toggle_special. It doesn't explicitly differentiate those siblings, but the fullscreen resource makes the intent clear.

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?

There is no guidance on when to use this tool versus alternatives, nor mention of prerequisites such as which window or display is affected. The description only lists mode/action options and leaves the selection context to the agent.

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