Skip to main content
Glama

Foresea Forecasting

foresea_batch_quotes

Call this when the user wants current price/volume for several markets at once -- a watchlist, a portfolio, "check on these 5 markets" -- instead of calling foresea_analyze_market once per market. Each ref is "platform:ident", e.g. "kalshi:KXFED-25JUN-H" or "polymarket:some-market-slug". Every quote carries fetched_at and age_seconds so you can judge freshness yourself -- both venues rate-limit hard, so don't assume a quote is live without checking age_seconds. One bad ref returns an error on that entry only; the rest of the batch still succeeds. Up to 50 refs per call. Example: refs=["kalshi:KXFED-25JUN-H", "polymarket:fed-cut-2026"] → {quotes: [{platform, ident, probability, volume, fetched_at, age_seconds, error}], count, truncated}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
refsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A5/5.0
Behavior5/5

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

With no annotations, the description fully discloses critical behaviors: quotes include fetched_at and age_seconds for freshness checking, both venues rate-limit hard (so quotes may not be live), one bad ref fails only that entry while the rest succeed, and there is a 50-ref limit. These are exactly the behavioral traits an agent needs to know, well beyond any schema information.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single focused paragraph that front-loads the purpose, then adds essential operational details (format, rate limits, error handling, limit) without redundancy. Every sentence contributes value, and the example output further clarifies behavior without adding fluff.

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?

Despite moderate complexity (batch processing, partial failures, rate limits, output shape), the description is complete: it explains input format, limits, failure semantics, freshness metadata, and gives an example output shape. The presence of an output schema is supplemented by the example, making the tool fully understandable without further investigation.

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?

The input schema only lists 'refs' without any description (0% coverage). The description compensates fully by defining the ref format as 'platform:ident' with concrete examples (kalshi:KXFED-25JUN-H, polymarket:some-market-slug) and specifying the 50-ref limit. It turns an opaque array of strings into a well-understood parameter.

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 fetches current price/volume for several markets at once, with the verb 'Call this when' and specific scenarios. It explicitly contrasts with foresea_analyze_market, making its unique purpose unmistakable.

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

Usage Guidelines5/5

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

It provides explicit guidance on when to use the tool ('a watchlist, a portfolio, "check on these 5 markets"') and when not to ('instead of calling foresea_analyze_market once per market'), directly naming the alternative. This is exemplary usage guidance.

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.6/5.0
Disambiguation3/5

Some tools have overlapping purposes: foresea_edge_board and foresea_scan_markets both return markets ranked by model-vs-market edge, and foresea_forecast vs foresea_debate_market both provide probabilities for a question. Descriptions help differentiate (specific vs. broad, quick vs. deep) but the boundaries are not always clear.

Naming Consistency4/5

All tools share the 'foresea_' prefix and use lowercase with underscores, which provides consistency. However, the remainder mixes verb-noun phrases (analyze_market, scan_markets) with bare nouns (orderbook, price_history) and compound nouns (market_leaderboard, polymarket_meta), creating minor stylistic inconsistency.

Tool Count4/5

17 tools is slightly above the typical well-scoped range of 3-15, but the server covers a broad domain (forecasting, market analysis, data feeds, portfolio optimization, track record). A couple of tools are redundant (edge_board vs scan_markets) and could be consolidated, but overall the count is reasonable.

Completeness4/5

The tool set covers the core analytics workflow: general forecasting, specific market analysis, opportunity scanning, market data (quotes, orderbook, history, trades), portfolio allocation, and performance evaluation. Minor gaps exist (e.g., no tool for detailed market rules or user portfolio tracking), but these are likely outside the intended scope.