Skip to main content
Glama
alyiox

mcp-walmart-marketplace

describe_endpoint

Read-only

Retrieve a single Walmart Marketplace API operation with its complete schema closure, including all referenced components, to construct request bodies and responses without the full OpenAPI spec.

Instructions

[WalmartMarketplace] Describe one OpenAPI operation with its schema closure. Returns the operation plus every components.schemas entry reachable from it, so request bodies and responses can be built without the full spec. Server-managed auth and QoS headers are omitted — do not supply them.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
operation_idYes[WalmartMarketplace] Operation id, qualified as domain:operationId (e.g. order-management:getAllOrders). Src: operations.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

The description adds behavioral context beyond annotations: it states that server-managed auth and QoS headers are omitted and instructs not to supply them, and it explains the output (operation plus reachable schemas). Since annotations already mark readOnlyHint=true, this extra detail is valuable and doesn't contradict.

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?

The description is two sentences, front-loaded with the core function, followed by concrete output description and a clear instruction. No unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the existence of an output schema and the read-only annotation, the description covers what the tool returns, the intended use case, and an important behavioral note about headers. Nothing critical is missing for an agent to call it correctly.

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?

The schema provides a full description of the operation_id parameter with format and example, so the tool description adds no additional parameter semantics. With 100% schema description coverage, the baseline of 3 is appropriate.

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 clearly states the tool's purpose: to describe an OpenAPI operation and its schema closure. It specifies the verb 'describe', the resource (an OpenAPI operation), and the additional detail of returning reachable schemas. This distinguishes it from siblings like list_endpoints (listing) and call_endpoint (calling).

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

Usage Guidelines4/5

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

The description implies a usage scenario: when you need to understand the schema of an endpoint to build request bodies and responses without the full spec. However, it does not explicitly compare with alternatives or state when not to use it, so it's clear context but lacks explicit exclusions.

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