Skip to main content
Glama

Show Chart

show_chart
Read-only

Render a Santiment chart with an asset's price (OHLC) plus an optional overlay metric in a second pane. The widget that consumes this tool is built on the Santiment chart library (lightweight-charts under the hood), so the response is render-ready — the client just feeds each series entry into the chart unchanged.

Parameters

  • slug — asset slug (e.g. bitcoin, ethereum). Defaults to bitcoin.

  • primary — what goes into the main pane.

    • "price" (default) — OHLC candlestick.

    • any metric name from the catalog — line/area instead of candles.

  • overlay — optional metric name to render in a second pane. Allowed values are listed below.

  • range24h, 7d, 30d, 90d, 1y. Defaults to 30d.

Available overlay metrics (catalog)

social_volume_total, social_dominance_total, sentiment_balance_total, sentiment_weighted_total, daily_active_addresses, network_growth, transaction_volume_usd, velocity, mvrv_usd, nvt, realized_value_usd, mvrv_long_short_diff_usd, exchange_balance, whale_transaction_count_100k_usd_to_inf, top_holders_held_supply_percent, dev_activity, github_activity, volume_usd, marketcap_usd, funding_rate_perp.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugNoAsset slug (e.g. 'bitcoin', 'ethereum'). Defaults to 'bitcoin'.
rangeNoTime range. One of: 24h, 7d, 30d, 90d, 1y. Defaults to 30d.
overlayNoOptional metric to overlay in a second pane. Must be one of the catalog names (see tool description).
primaryNoPrimary series — 'price' for candlestick OHLC, or a metric name from the catalog. Defaults to 'price'.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is clear. The description adds meaningful behavior beyond that: it explains the response is 'render-ready' for the widget, and that the client feeds each `series` entry unchanged. This gives the agent useful context about output consumption without contradicting 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?

The description is properly structured with a clear intro, parameter breakdown, and overlay list. It is slightly long but every section serves a purpose—the catalog list is necessary for valid overlay selections. Front-loading the core purpose makes it easy to grasp quickly.

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?

Given the absence of an output schema, the description partially covers return behavior by noting the response is 'render-ready' and contains `series` entries. It does not detail the exact shape of each series entry, but for a charting tool with clear parameter semantics and annotations, this is adequate. The main gap is a more explicit return format, which keeps it from a 5.

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

Parameters5/5

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

While schema coverage is 100%, the description significantly enriches parameter understanding: it lists allowed values for `range`, enumerates the full catalog of overlay metrics, and explains the semantic difference between `primary='price'` (candlesticks) vs a metric (line/area). Defaults are also restated and clarified. This goes well beyond the schema's basic descriptions.

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 a specific verb+resource: 'Render a Santiment chart with an asset's price (OHLC) plus an optional overlay metric in a second pane.' This clearly distinguishes the tool as a chart-rendering utility compared to sibling tools like fetch_metric_data_tool, which retrieve raw data. The purpose is unambiguous and immediately front-loaded.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is implied rather than explicitly stated. The description explains what the tool does and details parameters, but does not explicitly say when to prefer this over alternatives or provide when-not-to-use guidance. There is no direct contrast with sibling tools such as combined_trends_tool or fetch_metric_data_tool.

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

A4.4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: screening assets vs fetching timeseries vs catalog discovery vs charting vs insights discovery/fetch vs trending stories vs combined trends. The overlapping trending tools are explicitly differentiated through a superset relationship with usage guidance.

Naming Consistency3/5

All names are snake_case and most end in '_tool', but the pattern is mixed: some start with verbs (fetch_*, show_*) while others are noun phrases (assets_by_metric_tool, combined_trends_tool, insight_discovery_tool). This is readable but not a consistent verb_noun convention.

Tool Count5/5

8 tools is well-scoped for a crypto analytics server, covering discovery, data retrieval, screening, charting, and content access without bloat or thinness. Each tool earns its place in the workflow.

Completeness4/5

The toolset covers the core workflows: catalog discovery, metric timeseries, asset screening, chart rendering, insights list/fetch, and trending data. Minor gaps include no multi-metric timeseries fetch and a limited set of chart overlay options, but agents can work around these.

Resources