Skip to main content
Glama
nludd25
by nludd25

get_polypizza_status

Check if Poly Pizza integration is enabled in Blender and return a status message confirming whether its features are available.

Instructions

Check if Poly Pizza integration is enabled in Blender. Returns a message indicating whether Poly Pizza features are available.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_promptNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

B3.3/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 burden. 'Check if' and 'Returns a message' convey a read-only retrieval behavior without obvious side effects. It does not add richer behavioral detail beyond availability, but for a simple status check it is minimally transparent.

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 short sentences carry the key purpose and return behavior with little redundancy. It is appropriately concise, though the second sentence is somewhat generic.

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 status check with no required parameters and an output schema, the description is nearly sufficient. Its main gap is the unexplained user_prompt parameter and the lack of sibling differentiation, but it still likely allows a correct 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 schema has one parameter, user_prompt, with 0% schema description coverage, and the description never mentions it. The agent is given no hint of what the parameter does or why it exists, so the description adds no value for parameter understanding.

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 verb ('Check if') and resource ('Poly Pizza integration in Blender'), making the tool's function immediately clear. The resource name distinguishes it from sibling status tools like get_polyhaven_status or get_addon_status.

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

Usage Guidelines3/5

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

The description implies when to use it: when the agent needs to determine whether Poly Pizza features are available in Blender. However, it offers no explicit guidance for choosing among the many sibling status tools or any exclusions.

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