Skip to main content
Glama
hydracds

Cardexscan MCP Server

by hydracds

get_otc_offer_by_id

Retrieve details of a specific OTC offer by its unique ID to view pricing, status, and terms.

Instructions

Get details of a specific OTC offer by its ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
offerIdYesThe unique identifier of the OTC offer

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full behavioral burden. It does not state that this is a read-only operation, whether authentication is required, or what happens if the offer ID does not exist (e.g., error vs. null). For an unannotated tool this is a notable gap.

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?

A single front-loaded sentence with no wasted words. It is efficient, though spare enough that it borders on under-specification rather than model conciseness.

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

Completeness2/5

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

No output schema exists, so the description should explain what 'details' are returned; instead it leaves the return shape entirely unspecified. Combined with the absence of annotations and any failure-mode description, it is incomplete for an agent to call confidently.

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 a single required 'offerId' whose description already documents it as 'the unique identifier of the OTC offer'. The description adds no format or sourcing detail beyond the schema, so the baseline 3 applies.

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 states a specific verb ('Get') and resource ('OTC offer') scoped to a single item via 'by its ID'. This clearly distinguishes it from the list-style siblings like get_otc_offers and get_my_otc_offers, though it doesn't name them.

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?

There is no explicit guidance on when to use this versus get_otc_offers or get_my_otc_offers. The phrase 'by its ID' implies you need an identifier in hand, but no prerequisites (where the ID comes from) or alternatives are stated.

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