Skip to main content
Glama
WirterNow

AI Agent Bank MCP Server

by WirterNow

get_cc_orderbook

Retrieve live CC/USDC bids and asks, best bid/ask, spread, mid-price, and recent fills to find optimal pricing before placing or filling orders.

Instructions

Get the live CC/USDC order book. Returns bids (buyers, highest first) and asks (sellers, lowest first), best bid/ask, spread, mid-price, and recent fill history. Use this to find the best price before placing or filling an order.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
depthNoPrice levels to show per side (max 50)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior3/5

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

Without annotations, the description carries the burden. It discloses the data returned (bids, asks, spread, etc.) and that it's live. Missing details like polling behavior, rate limits, or response size, but adequately describes outcome.

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 well-constructed sentences with no redundancy. Front-loads the purpose and immediately explains return value. Every word adds value.

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 explains the return structure (bids, asks, etc.) despite no output schema. The parameter is simple. Given the number of sibling tools, this description covers the necessary context for an informed call.

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 single parameter 'depth' is already described in the input schema (default 10, max 50). The description adds no extra semantic meaning beyond what the schema provides, so baseline 3 applies due to 100% schema coverage.

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 retrieves the live CC/USDC order book with specific data (bids, asks, best bid/ask, spread, mid-price, recent fill history). It distinguishes itself from siblings like get_cc_market or get_market_depth by focusing on order book depth and pricing.

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?

Explicitly states 'Use this to find the best price before placing or filling an order,' providing clear when-to-use guidance. Does not mention when not to use or alternatives, but the context and sibling names imply this is the primary order book tool.

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