Skip to main content
Glama

Trades

trades
Read-onlyIdempotent

Kraken crypto exchange recent trade tape for a pair. Returns price, volume, timestamp, buy/sell, market/limit. Use for tick-level execution analysis.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pairYes
countNo
sinceNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "pair": "XBTUSDT"
      +  },
      +  {
      +    "count": 50,
      +    "pair": "ETHUSDT",
      +    "since": 1234567890
      +  }
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": {
      +    "oneOf": [
      +      {
      +        "description": "Trade data",
      +        "items": {
      +          "description": "Price, volume, time, side, type, misc",
      +          "items": {
      +            "type": [
      +              "string",
      +              "number"
      +            ]
      +          },
      +          "type": "array"
      +        },
      +        "type": "array"
      +      },
      +      {
      +        "description": "Last trade id",
      +        "type": "number"
      +      }
      +    ]
      +  },
      +  "description": "Recent trades indexed by pair",
      +  "type": "object"
      +}
  2. First observed

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, destructiveHint=false, and idempotentHint=true, so the safety profile is covered. The description adds the return fields and exchange context, but no deeper behavioral details like rate limits, ordering, or pagination. This adds minimal value beyond the annotations.

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 two concise sentences, front-loaded with the core action and return data, followed by a targeted use case. Every word earns its place; no redundancy or fluff.

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?

Despite having an output schema and annotations, the description fails to explain the parameters count and since, which are essential for correct invocation. The tool's purpose is clear, but operational completeness is lacking for an agent to use it correctly without additional inference.

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

Parameters2/5

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

Schema description coverage is 0%, so the description carries the burden for explaining parameters. It only implicitly covers 'pair' via 'a pair' and completely omits 'count' and 'since'. Without these semantics, an agent cannot reliably construct requests with those optional parameters.

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 the tool returns 'Kraken crypto exchange recent trade tape for a pair' with specific fields (price, volume, timestamp, buy/sell, market/limit). This is a specific verb+resource combination that distinguishes it from sibling tools like ohlc, depth, and ticker.

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 explicitly states 'Use for tick-level execution analysis,' providing clear context for when to choose this tool. It does not explicitly mention alternatives or exclusions, but the use case is specific and informative enough to guide selection.

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.