Skip to main content
Glama

Historical coin price chart

coin_history
Read-onlyIdempotent

Historical price timeseries for a coin. (Current plan: up to 1825 days of history.)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysNoDays of history
coinIdYesCanonical coin id (e.g. "bitcoin")

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYes

Schema Changelog

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

  1. Changed4 schema fields changed
    • addedOutput schema / properties / data
      Added value: +{
      +  "additionalProperties": true,
      +  "properties": {
      +    "coinId": {
      +      "type": "string"
      +    },
      +    "days": {
      +      "type": "integer"
      +    },
      +    "lastUpdated": {
      +      "description": "ISO-8601 timestamp of the most recent refresh",
      +      "type": "string"
      +    },
      +    "prices": {
      +      "description": "Price points, oldest → newest",
      +      "items": {
      +        "additionalProperties": true,
      +        "properties": {
      +          "marketCap": {
      +            "type": "number"
      +          },
      +          "price": {
      +            "type": "number"
      +          },
      +          "timestamp": {
      +            "description": "Unix epoch milliseconds",
      +            "type": "number"
      +          },
      +          "volume": {
      +            "type": "number"
      +          }
      +        },
      +        "required": [
      +          "timestamp",
      +          "price"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "source": {
      +      "description": "Where the data came from",
      +      "enum": [
      +        "rate_history",
      +        "cache",
      +        "coingecko"
      +      ],
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "coinId",
      +    "days",
      +    "source",
      +    "prices",
      +    "lastUpdated"
      +  ],
      +  "type": "object"
      +}
    • removedOutput schema / properties / points
      Removed value: -{
      -  "description": "Price points, oldest → newest",
      -  "items": {
      -    "additionalProperties": true,
      -    "properties": {
      -      "timestamp": {
      -        "description": "ISO-8601 timestamp of the data point",
      -        "type": "string"
      -      },
      -      "value": {
      -        "description": "The recorded numeric value",
      -        "type": "number"
      -      }
      -    },
      -    "required": [
      -      "timestamp",
      -      "value"
      -    ],
      -    "type": "object"
      -  },
      -  "type": "array"
      -}
    • removedOutput schema / properties / symbol
      Removed value: -{
      -  "type": "string"
      -}
    • changedOutput schema / required
      Previous value: -[
      -  "symbol",
      -  "points"
      -]New value: +[
      +  "data"
      +]
  2. Changed3 schema fields changed
    • addedInput schema / properties / coinId
      Added value: +{
      +  "description": "Canonical coin id (e.g. \"bitcoin\")",
      +  "type": "string"
      +}
    • removedInput schema / properties / symbol
      Removed value: -{
      -  "description": "Coin symbol (e.g. \"btc\")",
      -  "type": "string"
      -}
    • changedInput schema / required
      Previous value: -[
      -  "symbol"
      -]New value: +[
      +  "coinId"
      +]
  3. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": true,
      +  "properties": {
      +    "points": {
      +      "description": "Price points, oldest → newest",
      +      "items": {
      +        "additionalProperties": true,
      +        "properties": {
      +          "timestamp": {
      +            "description": "ISO-8601 timestamp of the data point",
      +            "type": "string"
      +          },
      +          "value": {
      +            "description": "The recorded numeric value",
      +            "type": "number"
      +          }
      +        },
      +        "required": [
      +          "timestamp",
      +          "value"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "symbol": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "symbol",
      +    "points"
      +  ],
      +  "type": "object"
      +}
  4. First observed

TDQS

B3.4/5.0
Behavior4/5

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

Annotations already indicate readOnly, idempotent, non-destructive. Description adds the limitation of up to 1825 days and hints at plan-dependency ('Current plan'), which is useful context beyond annotations.

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?

Two concise sentences, front-loaded with the primary purpose. The parenthetical adds useful context without bloating.

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

Completeness3/5

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

Given output schema exists (not shown), the description is minimally sufficient but lacks details on granularity (daily? hourly?) and data source, leaving gaps for an agent.

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?

Schema covers 100% of parameters with descriptions. The description adds no extra meaning beyond what the schema provides, meeting baseline but not exceeding.

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 it provides historical price timeseries for a coin, which is specific. It distinguishes sibling tools like get_price (current) and get_rate_history (rates) but doesn't explicitly contrast them.

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?

No guidance on when to use this tool versus alternatives like get_price or get_rate_history. The agent must infer from the description alone, with no explicit when or when-not advice.

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.9/5.0
Disambiguation5/5

Each tool targets a distinct aspect of cryptocurrency data: coin metadata, prices, rates (current, historical, changes), earn products, market summaries, stablecoin analysis, and symbol resolution. The detailed descriptions clearly differentiate even similar tools like get_price and get_price_by_symbol, or get_rates and list_earn_products.

Naming Consistency3/5

All names use snake_case, but conventions vary: some are verb_noun (get_coin, list_coins, resolve_symbol), some are noun_noun (coin_history, fear_greed_index, market_summary), and some include 'by' for parameters. This mix is readable but could be more consistent.

Tool Count5/5

With 21 tools, the server covers a broad domain of cryptocurrency data without being overwhelming. Each tool serves a clear purpose, and the count is appropriate for a comprehensive data API.

Completeness5/5

The tool set covers nearly all expected operations for a crypto data server: coin listing, metadata, prices, historical data, rates, yield products, market stats, top coins, stablecoin analysis, and symbol resolution. No obvious gaps are present for the stated focus on price, rate, and yield data.

Resources