tv-history
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| asset_analysisA | Return market analysis at a requested time. Inputs: asset: EXCHANGE:SYMBOL (preferred), for example RUS:MX1!. The legacy SYMBOL:EXCHANGE format, for example BTCUSD:BITSTAMP, is also accepted. timeframe: 1h, 4h, 1D, or 1W. Default: 1h. timestamp: ISO-8601 time cutoff. Default: current UTC time. response_version: execution. May be omitted. Default: execution. include_indicators: Also include RSI, MACD, SMA200, EMA9/20/50, Bollinger Bands, ADX, and momentum change. Default: false. With an explicit timestamp, uses only bars whose close is at or before it. Without a timestamp, price_data may be the latest received non-final bar; indicators, structure, levels, signals, and other derived metrics still use finalized bars only. Bar completion uses source confirmation plus the configured exchange-specific delay. Execution output contains timestamps and bar status, OHLCV and previous-bar data, ATR, recent path, market structure and trend state, actionable levels and bar signal, week context, weekly VWAP, session data when applicable, and data quality. Numeric values use two-decimal precision. |
| asset_barsA | Return raw OHLCV bars, ordered oldest-first. Inputs: asset: EXCHANGE:SYMBOL (preferred), for example ICEEUR:BRN1!. The legacy SYMBOL:EXCHANGE form is also accepted. timeframe: 1h, 4h, 1D, or 1W. Default: 1h. timestamp: ISO-8601 window cutoff. Default: current UTC time. count: Bars counting backward from timestamp, 1-1000. Default: 100. sessions: Return all bars from the last N distinct UTC trading dates. When supplied, sessions takes precedence over count. Returns OHLCV bar objects with t/is_bar_complete/o/h/l/c/v, effective close, sessions and bars covered, ATR-14 on the returned series, and gap quality. A bar is eligible once its open is at or before the requested cutoff. The latest bar may be incomplete; is_bar_complete applies source confirmation plus the configured exchange-specific delay after expected close. |
| asset_chartA | Return a PNG candlestick and volume chart ending at a requested time. Inputs: asset: EXCHANGE:SYMBOL (preferred), for example RUS:MX1!. The legacy SYMBOL:EXCHANGE format, for example BTCUSD:BITSTAMP, is also accepted. timeframe: 1h, 4h, 1D, or 1W. Default: 1h. timestamp: ISO-8601 chart cutoff. Default: current UTC time. days: Calendar days to display, from 1 through 365. Default: 10. response_version: execution. May be omitted. Default: execution. sessions: Display the last N distinct UTC trading dates. When supplied, sessions takes precedence over days. Renders only bars confirmed complete by a later received bar or the configured exchange-specific delay after expected close. Returns a PNG plus metadata with requested/effective times, latest-bar status, sessions covered, requested window, chart coverage, last_close, chart_low, chart_high, and price_decimals. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clearly distinct output: asset_analysis provides derived market analysis, asset_bars returns raw OHLCV data, and asset_chart renders a visual PNG chart. Although they share similar inputs, the purpose of each is unambiguous and there is no functional overlap.
All three tools follow the identical asset_<resource> noun pattern (analysis, bars, chart). This is a clean, consistent convention that makes the tool's purpose predictable from its name.
With only three tools, the server is tightly scoped to its stated purpose of providing historical market data, analysis, and visualization. Each tool earns its place, and the count is not overly thin or excessive for the domain.
For a read-only history server, the tool set covers the core needs: raw data retrieval (asset_bars), derived analysis (asset_analysis), and visual representation (asset_chart). There are no obvious dead ends or missing lifecycle operations, as the domain does not involve creating or modifying data.