Skip to main content
Glama

forgepilot_start_device_flow

Start a consent-scoped Aitherium device flow to authorize local inference, MCP, workspace, and LAN capabilities; no token is returned.

Instructions

Create a consent-scoped Aitherium device-flow handoff for local inference, MCP, workspace, and LAN capabilities. No token is returned.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
scopesNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior3/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 does disclose two meaningful traits: the flow is consent-scoped and it does not return a token, which tells the agent the result must be completed elsewhere and prevents it from waiting on a credential. It omits auth requirements, expiration behavior, and what the handoff object actually contains.

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?

Two tight sentences with the action stated first and the key caveat ('No token is returned') placed last. Nothing is padded, though the second sentence's caveat could be integrated more usefully with what the caller should do next.

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?

For a token-less device-flow initiation with no output schema, no annotations, and an undocumented parameter, the description is too thin. It should explain the flow's next steps and the shape of the handoff, otherwise an agent has no idea how to continue after calling it.

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

Parameters2/5

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

The single 'scopes' parameter has 0% schema description coverage and no enum, and the description only gestures at it via 'consent-scoped.' It never explains accepted scope values, formats, or defaults, leaving the agent with no way to populate the one input beyond guessing.

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?

States a specific verb ('Create') and a named resource (an 'Aitherium device-flow handoff'), which is enough to separate it from the plan/config/artifact siblings. The jargon ('Aitherium') is undefined, but the agent can still tell this initiates a device-flow rather than producing a plan or config.

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?

No statement of when to use this tool versus alternatives, no prerequisites, and no indication of what to do once the flow is started. The one useful hint — 'No token is returned' — is a behavior, not usage guidance.

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