Skip to main content
Glama

approve_project

Confirm to enable OpenReflex capture for the current project. Only call when the user explicitly asks to enable it.

Instructions

Enable OpenReflex capture for this project. Only call when the user explicitly asked to enable it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.3

TDQS

A3.7/5.0
Behavior3/5

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

There are no annotations, so the description carries the full behavioral load. It does communicate that this is a mutating 'enable' operation and imposes an explicit user-consent guard. However, it does not disclose side effects, idempotence, or what happens if the feature is already enabled or if confirmation is needed.

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?

Two short, direct sentences: the first states the action and the second states the invocation guard. Every word earns its place and the description is immediately actionable.

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?

The tool itself is simple and has an output schema, but the unexplained confirm parameter leaves the invocation ambiguous. The description is clear about intent and timing but not about the actual input needed to complete the call.

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

Parameters1/5

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

The description never mentions the critical confirm parameter, and schema description coverage is 0%. An agent cannot determine from the tool definition whether it should set confirm to true or false, making this the definition's largest gap.

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 and resource: 'Enable OpenReflex capture for this project.' This clearly identifies what the tool does and distinguishes it from siblings like get_execution_context, choose_path, and record_outcome, which have unrelated responsibilities.

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

Usage Guidelines5/5

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

The description provides an explicit precondition: 'Only call when the user explicitly asked to enable it.' This gives the agent clear guidance about when the tool is appropriate and prevents unsolicited invocation.

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