Skip to main content
Glama

Call read-only steamwebapi endpoint

call_readonly_endpoint
Read-only

Executes a documented steamwebapi GET endpoint with the caller API key from the MCP Authorization or X-Api-Key header. Refuses POST/PUT/PATCH/DELETE plus Proxy, Steam Guard and Tradeoffer endpoints.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesDocumented OpenAPI GET path, e.g. "/steam/api/item" or "/market/{market}/prices".
timeoutMsNoHTTP timeout in milliseconds. Defaults to 10000.
parametersNoQuery and path parameters for the endpoint. Do not include `key`; pass your API key via the MCP Authorization or X-Api-Key header.
maxResponseBytesNoMaximum response characters returned to the agent. Larger responses are truncated.

Schema Changelog

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

  1. Added

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already mark readOnlyHint=true and destructiveHint=false. The description adds useful behavioral details: the API key is taken from the MCP Authorization or X-Api-Key header, and it refuses unsafe methods and excluded endpoint categories. This goes beyond the annotations and helps the agent understand constraints.

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 purpose and authentication, the second states exclusions. No filler, front-loaded with the core function.

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?

For a generic endpoint caller, the description covers purpose, auth mechanism, and forbidden methods/endpoints. With full schema parameter documentation and safe-operation annotations, this is complete enough. It doesn't specify return format, but that is likely self-evident and not required given no output schema.

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?

Input schema covers all 4 parameters with clear descriptions (e.g., path examples, timeout range, parameters object, maxResponseBytes truncation). The description itself adds little parameter-specific meaning beyond what the schema already provides, so baseline 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 it 'Executes a documented steamwebapi GET endpoint' with the caller's API key. It distinguishes itself from sibling tools (e.g., get_concept, list_games) by being a generic read-only GET caller, and the name/title reinforce this role.

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 provides clear context: use for GET endpoints, pass API key via headers, and it explicitly refuses POST/PUT/PATCH/DELETE plus Proxy, Steam Guard and Tradeoffer endpoints. It doesn't explicitly compare to alternatives (e.g., 'use this for endpoints without a dedicated tool'), but the restrictions and generic nature imply when it should be chosen.

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