Skip to main content
Glama

midasflow-mcp-quickstart

Get market board (movers / overview / anomalies) [grouped]

get_market
Read-onlyIdempotent

Whole-market reads, grouped by kind. kind='movers' (default)=top movers ranked (/v1/movers); 'overview'=whole-market roll-up — breadth / direction / activity (/v1/market); 'anomalies'=per-symbol or cross-market anomaly board (volume_spike/abnormal_spread/phantom_tick) with severity bands (/v1/anomalies). Cheap top-level CONTEXT to find what's MOVING before drilling into one symbol. Market DATA, NOT advice. Empty/unknown kind → a menu of kinds.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNo'movers' (default, /v1/movers) | 'overview' (/v1/market) | 'anomalies' (/v1/anomalies). Empty/unknown → menu.movers
limitNoMax rows for movers (1-100, default 24) / anomalies (1-200, default 20); clamped server-side.
symbolNoAnomalies single-symbol filter (kind='anomalies' only; empty = cross-market board). Case/space-insensitive.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare read-only, idempotent, and non-destructive. The description adds value by explaining the behavior of each kind (e.g., 'anomalies' includes volume_spike/phantom_tick with severity bands), the default kind, and what happens for empty/unknown kind. It also explicitly states 'Market DATA, NOT advice', disclosing the nature of the output.

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 a single efficient paragraph, front-loading the main purpose and then detailing kinds. Every sentence adds value. Could be slightly improved by using bullet points for the three kinds, but current structure is clear and not verbose.

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 an output schema present, the description does not need to detail return values. It covers all necessary context: what each kind returns, endpoints invoked implicitly, edge cases (unknown/empty kind), and usage intent (market context before drilling). The combo of annotations, schema, and description leaves no gaps.

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

Parameters4/5

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

Schema coverage is 100% with existing descriptions. The description goes beyond the schema by explaining the default behavior for kind (movers), the clamping and effective ranges for limit, and the case/space-insensitivity and scope (anomalies only) for symbol. This provides practical context for parameter usage.

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 states the tool is for whole-market reads grouped by kind, listing three distinct modes: movers, overview, anomalies. It specifies the action (get market board) and differentiates from sibling tools like get_candles or get_signals by emphasizing it's top-level context before drilling into specific symbols.

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?

Explicitly says 'find what's MOVING before drilling into one symbol', providing clear usage context. It notes when to use this tool (initial market context) and implies when not to (for detailed single-symbol analysis). Could be improved by listing alternative tools more directly.

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

Each tool targets a distinct aspect of market data and analytics: account info, analysis, backtesting, expected value, accuracy, candles, context, flow, heatmap, market overview, orderbook, signals, whales, and scoring. Despite some thematic overlap (e.g., get_accuracy and score_symbol both involve probabilities), descriptions clearly differentiate their purposes and usage contexts.

Naming Consistency2/5

Naming is inconsistent: some tools use the 'get_' prefix (get_accuracy, get_candles, etc.), while others are bare verbs or nouns (account, analyze, backtest, calc_ev, score_symbol). This mix of patterns (get_ vs verb vs noun) makes the naming convention unpredictable.

Tool Count5/5

With 14 tools, the server is well-scoped for a comprehensive market data and analytics API. Each tool serves a clear and distinct function, and the count is neither too few to cover the domain nor too many to be overwhelming.

Completeness5/5

The tool set covers all major aspects of the domain: account management, historical data (candles), market context (regime, flow, heatmap), order book, signals, accuracy/backtesting, and scoring. There are no obvious missing operations for an analytics-focused financial data server.