Skip to main content
Glama
venkatk1801

market-pulse

by venkatk1801

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
get_quoteA

Latest quote for a symbol: price, day change, OHLC and volume.

Accepts US tickers (AAPL), index aliases (^GSPC, DJI, ^IXIC) and crypto pairs (BTC, ETH). Change is measured against the previous daily close. If Stooq's live quote endpoint is unreachable, falls back to the latest daily bar (noted in the source field).

get_historyA

Daily OHLCV bars for a symbol, most recent days trading days.

days is clamped to 1-365.

indicatorB

Technical indicator for a symbol.

kind: "rsi" (RSI-14), "sma" (SMA-20) or "ema" (EMA-20). Returns the latest value plus the data window used.

market_statusA

Whether the US stock market (NYSE) is open right now, in ET.

Returns open/closed plus the reason (regular session 09:30-16:00 ET, pre-market, after-hours, weekend or market holiday).

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.8/5.0

Scored across 4 tools

Disambiguation5/5

Each tool targets a distinct data need: current quote, historical bars, computed indicator, and market hours. No tool's purpose overlaps with another, even though indicator and history both use price data.

Naming Consistency3/5

get_quote and get_history follow a clear get_<noun> pattern, but indicator and market_status are bare nouns without the get_ prefix. The snake_case style is uniform, yet the verb-prefix inconsistency makes the set feel mixed.

Tool Count5/5

Four tools is a compact, purposeful set for a market-data server. Each tool covers a distinct read-only concern without redundancy or bloat.

Completeness4/5

The server covers the core market-data needs: snapshot, historical daily data, derived indicators, and market hours. It lacks batch quotes, intraday bars, or symbol search, but these are optional extras rather than workflow-breaking gaps.