Skip to main content
Glama

Ticker

ticker
Read-onlyIdempotent

Kraken crypto exchange live ticker for a pair (e.g. "XBTUSD"). PREFER for 'current price of ', 'bid and ask for ', 'BTC spread'. Returns named bid, ask, spread, last_price, open_price, volume_24h and vwap_24h alongside Kraken's raw single-letter fields (a/b/c/v/p/o).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pairYes

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"
      +  },
      +  {
      +    "pair": "ETHUSDT"
      +  }
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": {
      +    "properties": {
      +      "a": {
      +        "description": "Ask price, whole lot volume, lot volume",
      +        "items": {
      +          "type": [
      +            "string",
      +            "number"
      +          ]
      +        },
      +        "type": "array"
      +      },
      +      "b": {
      +        "description": "Bid price, whole lot volume, lot volume",
      +        "items": {
      +          "type": [
      +            "string",
      +            "number"
      +          ]
      +        },
      +        "type": "array"
      +      },
      +      "c": {
      +        "description": "Last trade price, lot volume",
      +        "items": {
      +          "type": [
      +            "string",
      +            "number"
      +          ]
      +        },
      +        "type": "array"
      +      },
      +      "h": {
      +        "description": "High, high",
      +        "items": {
      +          "type": [
      +            "string",
      +            "number"
      +          ]
      +        },
      +        "type": "array"
      +      },
      +      "l": {
      +        "description": "Low, low",
      +        "items": {
      +          "type": [
      +            "string",
      +            "number"
      +          ]
      +        },
      +        "type": "array"
      +      },
      +      "o": {
      +        "description": "Opening price",
      +        "type": [
      +          "string",
      +          "number"
      +        ]
      +      },
      +      "p": {
      +        "description": "Volume weighted average price, volume weighted average price",
      +        "items": {
      +          "type": [
      +            "string",
      +            "number"
      +          ]
      +        },
      +        "type": "array"
      +      },
      +      "t": {
      +        "description": "Number of trades, total volume",
      +        "items": {
      +          "type": "integer"
      +        },
      +        "type": "array"
      +      },
      +      "v": {
      +        "description": "Volume, volume weighted average price",
      +        "items": {
      +          "type": [
      +            "string",
      +            "number"
      +          ]
      +        },
      +        "type": "array"
      +      }
      +    },
      +    "type": "object"
      +  },
      +  "description": "Ticker data indexed by pair",
      +  "type": "object"
      +}
  2. First observed

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare read-only, idempotent, and non-destructive behavior. The description adds return field names and the 'live' nature, but doesn't disclose other traits like rate limits, authentication, or error behavior. That's a reasonable disclosure level given 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 sentences, front-loaded with the core purpose, and every clause adds value (usage preference, return fields). There is no redundant repetition of schema or annotation information.

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

Completeness5/5

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

With one parameter, a simple output schema, and clear annotations, the description covers what the tool does, when to use it, and what it returns. The inclusion of both named and raw fields is a plus, and the example pair in the schema complements the description well.

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 schema has 0% description coverage for the 'pair' parameter, so the description must compensate. It provides an example ('XBTUSD') and clarifies it's a trading pair, but doesn't fully explain the pair format or potential values. This gives some meaning but leaves room for ambiguity.

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 specifies the tool: a Kraken live ticker for a pair, and explicitly lists the return fields (bid, ask, spread, etc.). It distinguishes itself from sibling tools by indicating it should be preferred for current price and bid/ask queries, making its purpose unambiguous.

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?

Usage context is provided via 'PREFER for current price, bid/ask, BTC spread', which tells the agent when to choose this tool. However, it doesn't explicitly state when not to use it or name alternative tools, so it falls short of full exclusion guidance.

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.