Skip to main content
Glama

get_funnel_status

Check the status of a funnel being generated.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesFunnel slug from the URL

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description must carry the burden of disclosing behavioral traits. It only says 'check the status' without indicating whether it is read-only, idempotent, or what side effects (if any) occur. No information about return format or possible errors.

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?

The description is very concise, containing one sentence with no redundant information. However, it may be too brief, missing valuable context that could be added without losing conciseness.

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?

Given the simplicity of the tool (one parameter, no output schema), the description is minimally complete. It does not explain what the status response looks like, possible values, or how to handle errors, leaving the agent without sufficient context.

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 coverage is 100% with the slug parameter having a description. The tool description does not add additional meaning beyond the schema, so baseline 3 is appropriate. No further parameter detail is provided.

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 tool checks the status of a funnel being generated, using the verb 'check' and specifying the resource. It distinguishes from siblings 'generate_funnel' (creates) and 'list_axes' (lists), but could be more specific about what status means (e.g., progress, completion).

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 guidance is provided on when to use this tool compared to siblings. It does not specify prerequisites (e.g., funnel must be generating) or conditions for use, leaving the agent to infer context.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: generating a funnel, checking its status, and listing style axes. No overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case (generate_funnel, get_funnel_status, list_axes).

Tool Count5/5

3 tools is appropriate for a focused funnel generator, each earning its place in the workflow.

Completeness4/5

Core generation workflow is covered (create, status, style options), but missing update/delete operations that might be needed for iterative refinement.

Resources