Skip to main content
Glama

sap backpack get market

sap_backpack_get_market
Read-onlyIdempotent

Get one Backpack market by exact symbol (e.g. SOL_USDC). Resolved by filtering the full markets list client-side — the upstream /markets/{symbol} path is a 404 trap and is never called. Backpack symbols: spot SOL_USDC, perp SOL_USDC_PERP (marketType SPOT|PERP), stock spot MU.US_USDC, stock RFQ AAPL.US_USDC_RFQ. Free read.

SAP MCP execution guidance: Intent: read/discovery workflow. Pricing: free; call directly without x402. Routing: free hosted call; call directly and keep it small/exact when possible. Signer boundary: hosted reads/builders never receive keypair bytes; value-moving results must be finalized locally when signing is required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
symbolYesMarket symbol, e.g. SOL_USDC (spot) or SOL_USDC_PERP (perp)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
contentYesMCP content blocks returned to the caller.
isErrorNoTrue when the tool result represents an application-level error.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so the safety profile is covered. The description adds valuable behavioral context: the upstream endpoint is a 404 trap and is never called, resolution is done client-side by filtering the full markets list, and it is a free read. This goes beyond the annotations and helps an agent understand the actual execution behavior.

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 dense but well-organized: the core purpose and key warning are front-loaded, followed by symbol format examples and SAP execution guidance. The SAP MCP execution guidance block is somewhat repetitive with the input schema's description, but it is still concise and relevant. Every sentence earns its place, though the guidance block could be trimmed slightly.

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 single-parameter read tool with a rich output schema and strong annotations, the description is nearly complete. It covers the exact symbol requirement, the 404-trap behavior, symbol formats, and free-call routing. The only minor gap is that it doesn't describe what the returned market object contains, but the output schema presumably covers that, so this is not a significant omission.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the schema already describes the symbol parameter with examples. The description adds extra semantic value by enumerating the exact symbol formats (spot SOL_USDC, perp SOL_USDC_PERP, stock spot MU.US_USDC, stock RFQ AAPL.US_USDC_RFQ) and clarifying that the symbol must be exact. This is a meaningful addition beyond the schema's brief example.

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 ('Get'), a specific resource ('one Backpack market by exact symbol'), and gives concrete examples (SOL_USDC, SOL_USDC_PERP, MU.US_USDC, AAPL.US_USDC_RFQ). It also distinguishes itself from the broader sap_backpack_get_markets sibling by emphasizing exact-symbol lookup. This is a clear, specific purpose.

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?

The description explicitly says to use exact symbols, warns that the upstream /markets/{symbol} path is a 404 trap and is never called, and explains the client-side filtering resolution. It also provides symbol format guidance (spot vs perp vs stock RFQ). This gives an agent clear when-to-use and how-to-use guidance, and implicitly distinguishes from the list-all sibling.

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.