Skip to main content
Glama

Get full endpoint specification

get_endpoint

Returns the full OpenAPI operation object for a given path: parameters, request body, all response schemas, examples, and tags. Use after search_endpoints to drill into a specific endpoint.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesFull OpenAPI path, e.g. "/steam/api/items" or "/account/me".
methodNoHTTP method. Defaults to "get".

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

No annotations are provided, but the description discloses the return content in detail, indicating a read-only lookup with no side effects. It does not mention error behavior or rate limits, but for a straightforward retrieval of an OpenAPI object, the transparency is adequate.

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 concise sentences: the first states what is returned, the second specifies when to use it. No wasted words; the most important information is front-loaded.

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

Completeness4/5

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

The description lists the components of the returned OpenAPI object and provides usage context relative to search_endpoints. The schema covers parameters. Since there is no output schema, the description's enumeration of return contents helps complete the picture, though it could mention error cases.

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 both path and method having descriptive comments including an example path and default method. The description adds no parameter details beyond the schema, so the baseline score 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 returns the full OpenAPI operation object for a given path, listing specific contents (parameters, request body, response schemas, examples, tags). This specific verb+resource phrasing distinguishes it from siblings like search_endpoints and list_endpoints.

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?

It explicitly instructs to use this tool after search_endpoints to drill into a specific endpoint, providing clear contextual usage and implying an alternative tool for the search step. This is strong guidance.

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

A4.5/5.0
Disambiguation5/5

Each tool targets a distinct resource/action: execution, concept lookup, endpoint spec, pricing, and enumeration of games, markets, products, endpoints, and concepts. No overlapping purposes.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern (call_, get_, list_, search_), making the naming predictable and easy to navigate.

Tool Count5/5

10 tools is well-scoped for an API exploration server, covering execution, lookup, search, enumeration, and pricing without redundancy.

Completeness5/5

The server covers the full workflow: discover endpoints, search concepts, list supported games/markets/products, retrieve detailed specs and pricing, and execute readonly API calls. No obvious gaps for its intended purpose.

Resources