Skip to main content
Glama

Delvorn

get_stats

Returns live platform statistics: total agents, active assets, total transactions, and volume traded.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. First observed

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It does disclose that the tool returns live statistics and lists the returned data categories. However, it does not clarify what 'live' means (e.g., real-time vs. cached), whether authentication is required, or what happens on errors or empty data.

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?

The description is a single sentence with the main action front-loaded and a compact enumeration of the four returned metrics. Every part is informative and there is no redundant wording.

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 simple, no-parameter read-only tool with no output schema, the description provides a reasonable list of return values. It is slightly incomplete because it does not specify units for 'volume traded,' the time range or period represented by 'total transactions,' or what 'live' guarantees about freshness.

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?

The tool has zero parameters and the input schema is complete (100% coverage). Per the baseline for zero-parameter tools, the description need not add parameter semantics; it appropriately focuses on return values instead.

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 clearly states a specific verb ('Returns') and resource ('live platform statistics') and enumerates the exact metrics returned, making the tool's purpose understandable. However, it does not explicitly differentiate itself from the sibling get_platform_info, which could plausibly overlap in scope.

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?

The description gives no guidance on when to use this tool versus alternatives such as get_platform_info or get_agent. It implies one would use it to retrieve aggregate platform statistics, but it provides no exclusions, prerequisites, or comparison to sibling tools.

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

A3.7/5.0
Disambiguation3/5

Most tools target distinct resources and the x402 lifecycle is split by clear verbs, but get_platform_info and delvorn_canary both describe the same public canary endpoint, creating overlap. buy_asset vs the x402 relay quote/fund flow also leaves some ambiguity about which purchase path to use, and list_asset vs browse_assets uses "list" in a confusingly different sense.

Naming Consistency4/5

Names overwhelmingly follow a readable snake_case verb_noun pattern like buy_asset, get_asset, create_x402_relay_quote, and register_agent. The main exceptions are delvorn_canary, which has no verb, and list_asset, where the verb is overloaded and could be mistaken for a browse/list operation.

Tool Count4/5

Thirteen tools is within a reasonable range for a marketplace plus payment-relay server, and most tools have a distinct role. The count is slightly high because platform info, stats, and the canary overlap in purpose, but none of the tools feel truly gratuitous.

Completeness4/5

The core lifecycle is covered: agent registration, asset listing/browsing/purchasing, and the x402 quote/fund/status/retry flow. Obvious gaps include unlisting or updating an asset and cancelling a relay payment, but these are workable limitations rather than severe dead ends.

Resources