Skip to main content
Glama

OneQAZ Trading Intelligence

get_resolved_predictions

Read-onlyIdempotent

Purpose: Raw, row-level prediction ledger — every macro regime prediction's full lifecycle (created_at -> resolved_at -> outcome). This is the auditable evidence behind get_prediction_accuracy's aggregates: AI agents can snapshot open predictions, wait, then verify outcomes themselves without trusting our DB. Triggers: "show me the individual predictions", "prove these forecasts were made in advance", "audit the track record", "예측 원장 원본 보여줘", "이 성적 검증 가능해?". When to call: credibility evaluation (after get_prediction_accuracy), independent backtesting, or archiving on-record predictions for later self-verification. Prerequisites: none. Pairs with get_ledger_integrity for tamper-evidence. Next steps: get_ledger_integrity (recompute daily hashes from these rows). Caveats: cursor pagination (id-ordered) — follow next_cursor for bulk reads. Paper-research forecasts, not investment advice. Output: full_data { predictions[] {id, source_category, source_regime_change, target_market, predicted_regime_shift, lag_hours, confidence, created_at, resolved_at, outcome, actual_regime_shift}, count, next_cursor, has_more, meta }.

Args: target_market: filter e.g. "coin_market" / "kr_market" / "us_market" source_category: filter e.g. "vix", "bonds", "commodities" day: filter by created day "YYYY-MM-DD" (UTC, string prefix of created_at) status: "all" | "resolved" | "open" cursor: last id from previous page (0 = start) limit: page size (max 500)

Disclaimer: Information only, not investment advice.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dayNo
limitNo
cursorNo
statusNoall
target_marketNo
source_categoryNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.6/5.0
Behavior4/5

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

Annotations declare readOnlyHint, idempotentHint, and openWorldHint, which already cover the safety profile. The description adds meaningful behavioral context beyond these: cursor pagination details, the audit/evidence role (e.g., 'AI agents can snapshot open predictions, wait, then verify outcomes themselves without trusting our DB'), and a paper-research disclaimer. It does not contradict annotations and provides useful caveats about pagination and non-investment nature.

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 organized with clear labeled sections (Purpose, Triggers, When to call, Prerequisites, Next steps, Caveats, Output, Args, Disclaimer). Every section adds value — triggers help routing, caveats prevent misuse, and output formatting aids parsing. It is longer than average but each sentence earns its place; the structure is front-loaded with the essential purpose.

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?

For a 6-parameter tool with an output schema, the description is remarkably complete. It covers output structure (full_data with predictions[], count, next_cursor, has_more, meta), pagination semantics, filter usage, relationships to sibling tools, and the audit context. No important behavioral or usage aspect is left unexplained; the agent has everything needed to select and invoke the tool correctly.

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 'Args' section goes well beyond the bare schema: it explains each parameter with concrete examples (e.g., target_market values 'coin_market'/'kr_market'/'us_market', source_category 'vix'/'bonds'/'commodities'), clarifies day as UTC and a string prefix of created_at, defines status values, and specifies cursor as last id and limit max 500. This fully compensates for the 0% schema description coverage and makes parameter usage unambiguous.

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?

Description opens with a specific and vivid purpose: 'Raw, row-level prediction ledger — every macro regime prediction's full lifecycle (created_at -> resolved_at -> outcome).' This clearly distinguishes it from sibling tools like get_prediction_accuracy (aggregates) and get_active_predictions (likely active only). The verbal resource and scope are explicit.

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?

Provides explicit 'When to call' guidance: credibility evaluation, independent backtesting, archiving. It also mentions pairing with get_ledger_integrity and next steps. However, it lacks an explicit 'when not to use' / exclusion statement; the alternative tool (get_prediction_accuracy) is implied but not explicitly contrasted as 'use this for summaries.' The triggers and prerequisites are strong, but the absence of a clear negative case costs a point.

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.3/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, but there are overlapping areas such as get_feature_governance_state vs get_feature_governance_status_tool and the convenience wrappers for losing/winning positions/trades. Descriptions clarify relationships well, so confusion is limited.

Naming Consistency4/5

The vast majority follow a consistent 'get_' prefix with descriptive nouns, but inconsistencies exist: some tools have '_tool' suffix (e.g., get_macro_causality_graph_tool) while similar ones do not, and governance tools use 'state' vs 'status_tool'. Overall, the pattern is predictable.

Tool Count2/5

39 tools is excessive for the apparent scope. Many are redundant convenience wrappers (get_losing_positions, get_winning_trades, etc.) that duplicate filters on other tools, and there are near-duplicate governance tools. The count could be significantly consolidated.

Completeness5/5

The tool surface is remarkably comprehensive, covering signals, trades, predictions, positions, macro relationships, news causality, strategies, structure, governance, and ledger integrity. There are no obvious functional gaps, and the tools form a well-integrated evidence chain.