Skip to main content
Glama

Petstore MCP Server

findPetsByStatus

Finds Pets by status. - Multiple status values can be provided with comma separated strings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusYes
x-hapi-auth-stateNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changed
    • removedInput schema / properties / status / description
      Removed value: -"Status values that need to be considered for filter"
    • addedInput schema / properties / status / enum
      Added value: +[
      +  "available",
      +  "pending",
      +  "sold"
      +]
    • addedInput schema / required
      Added value: +[
      +  "status"
      +]
  2. First observed

TDQS

C2.8/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full burden. It only restates 'Finds Pets' and adds the comma-separated behavior, but doesn't disclose return format, error behavior, or authentication requirements.

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 concise and front-loaded, with two short sentences. The first sentence is somewhat tautological but still clear; the second adds useful parameter detail without waste.

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 lookup tool, the description covers the core purpose and status filtering. However, the unexplained optional parameter and lack of return/error details leave gaps, especially without annotations or an output schema.

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 description adds meaning for the 'status' parameter (comma-separated values), but the schema already provides the enum. The optional 'x-hapi-auth-state' parameter is completely unexplained, and with 0% schema_description_coverage, the description should compensate more.

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 finds pets by status, which is a specific verb+resource+filter. It distinguishes from sibling 'findPetsByTags' by the status criterion, though it doesn't explicitly name alternatives.

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 on when to use this tool versus findPetsByTags or other queries. The comma-separated note is a parameter hint, not a usage guideline.

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.