Skip to main content
Glama

list_deposits

Filtered deposit list. Deposit search. Filters are optional; an empty query returns a bounded page (default limit=50, max 200). Optional filters: depositor, delegate, platform, currency, and/or a date window (from/to/range). When a window is supplied the server filters on deposit creation timestamp and the response echoes a window block. Market rows include DRM and oracle pricing fields (manager_rate, manager_fee, rate_source, rate_manager_id, oracle_rate, effective_oracle_rate, adapter, kind, is_oracle_backed, oracle_source, spread_bps, is_delegated).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toNoWindow upper bound (exclusive). ISO-8601 or unix-seconds. Defaults to `now` when omitted but `from` is supplied.
fromNoWindow lower bound (inclusive). ISO-8601 (`2026-04-01T00:00:00Z`) or unix-seconds. Optional when `range` is supplied.
sortNoSort direction by canonical timestamp. Default: `desc`.
limitNoMax number of results to return.
rangeNoUnified date-range shortcut shared across analytics + explorer endpoints. Hard cap: 400-day window. When set, takes precedence over `from`/`to`. Legacy values (`3mtd`, `q1`-`q4`, `custom`) were retired on 2026-04-30; use the explicit shortcuts below.
cursorNoPass the previous page's `next_cursor` to walk forward without offset drift. This is the supported pagination path on every list endpoint.
offsetNoDeprecated. Use `cursor` instead — offset pagination is fragile under concurrent writes and slow at scale. Still accepted for backwards compatibility while integrators migrate.
statusNo
currencyNoRepeatable or comma-separated currency codes.
delegateNoDelegate address.
platformNoRepeatable or comma-separated platform ids (analytics treats as verifier alias).
acceptingNoFilter by accepting intents.
depositorNoMaker address.

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden and delivers richly: it discloses default limit (50), max cap (200), window semantics (server filters on creation timestamp), response echo of a window block, precedence of `range` over `from`/`to`, deprecation of `offset`, retirement of legacy range values with effective date, hard cap on range windows (400 days), and the supported pagination path via cursor. This far exceeds typical behavioral disclosure.

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 compact and front-loaded: opening verb+object phrase, then limits, filters, window semantics, and ending with a useful return-field note. Every sentence adds value. A tiny deduction for density—the final parenthetical list is long—but it's information-dense rather than padded.

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 13-parameter list endpoint with no output schema and no annotations, the description is remarkably complete. It covers defaults, pagination, deprecation, date semantics, and return-field context. It doesn't explain the sort default or all 13 parameters explicitly, but with 92% schema coverage the schema handles those, and the description covers the high-risk behavioral aspects.

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 92%, so the schema does most of the work. The description adds meaningful cross-parameter context: how filters combine, window behavior, `range` precedence, legacy value retirement, and the `next_cursor` pagination path. It even identifies which market rows include DRM and oracle pricing fields, adding value beyond individual parameter descriptions. Minor deduction for not enumerating every filter parameter, but it names the important ones.

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 opens with 'Filtered deposit list. Deposit search.' which clearly identifies the tool's function as listing/searching deposits with filtering capabilities. It distinguishes itself from siblings like get_deposit (single deposit) and list_activity/list_intents by explicitly scoping to deposits and describing specific deposit-centric filters (depositor, delegate, platform, currency, date window).

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 clearly states usage context: filters are optional, empty query returns a bounded page, and specifies default/max limits. It explains when to use date windows and how filters combine. It doesn't explicitly contrast with alternatives, but the sibling differentiation (deposit-specific filters vs get_deposit's single-item lookup) makes the when-to-use fairly clear.

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

C2.8/5.0
Disambiguation3/5

Most get_* and list_* tools target distinct domain entities, but several high-level analytics endpoints overlap in purpose (get_analytics_summary, get_protocol_overview, get_market_summary, get_timeseries, get_leaderboard), and pairs like get_deposit/get_deposit_context and get_vault/get_vault_analytics create close boundaries. The descriptions clarify the differences, but an agent would need to read carefully to avoid misselection.

Naming Consistency5/5

The tool set follows a strong verb_noun pattern: get_ for single-entity or detail views, list_ for collections, plus explicit action endpoints like export_trade_log, plan_routes, and search_explorer. All names are snake_case and predictable, with no mixing of conventions.

Tool Count3/5

28 tools is on the heavy side for an MCP server, even for a broad analytics domain. Most tools map to real entities, but the surface is padded by overlapping summary/analytics endpoints and separate detail, context, and analytics variants for the same resources.

Completeness4/5

The server provides broad read-only coverage of the protocol domain: deposits, intents, makers, takers, vaults, delegates, verifiers, platforms, integrators, orderbook, routes, activity, and search. Minor gaps such as no list_vaults or list_integrators are workable via search/get endpoints, and mutating operations appear out of scope for an analytics-focused server.

Resources