Skip to main content
Glama

sygnldata — market intelligence for trading agents

trade_preflight

Pre-trade decision gate for AI trading agents ($0.01).

Deterministic ALLOW / REDUCE / REQUIRE_CONFIRMATION / BLOCK with reason codes, an order-hash-bound approved size, 60s expiry, and an EIP-191-signed attestation. Composes the live regime detector, the measured execution-cost oracle, and YOUR policy (max_notional_usd, max_cost_bps, daily_loss_limit_usd, confirm_above_usd, symbol_allowlist, ...). order: {symbol, side, notional_usd, order_type}. evidence: {audit_score} from audit_backtest. Not investment advice.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
orderYes
stateNo
policyNo
evidenceNo
payment_signatureNo

TDQS

A4/5.0
Behavior4/5

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

Given no annotations, the description discloses key behavioral traits: deterministic decisions (ALLOW/REDUCE/BLOCK), 60s expiry, signed attestation, and composition of policy/regime/cost. It does not mention side effects or data persistence, which seems appropriate for a decision-only tool.

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 somewhat long but front-loads key info (outcomes, expiry, attestation). It could be trimmed slightly, but each sentence adds value. The structure is logical.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description explains return values (decisions, reason codes, signed attestation) but lacks detail on output format. With 5 parameters and nested objects, it covers most parameter meanings (order, evidence, policy) but not state or payment_signature. Overall adequate but not exhaustive.

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?

With 0% schema description coverage, the description adds significant value by explaining the 'order' object fields (symbol, side, notional_usd, order_type) and 'evidence' field (audit_score from audit_backtest). However, 'state' and 'payment_signature' are not elaborated.

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's purpose as a 'Pre-trade decision gate for AI trading agents' and lists its deterministic outcomes (ALLOW, REDUCE, etc.). It distinguishes itself from sibling tools like get_pricing or audit_backtest by focusing on pre-trade authorization.

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

Usage Guidelines3/5

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

The description implies usage as a gate before trade execution but does not explicitly state when to use or avoid it over siblings like get_regime_current or estimate_execution_cost. No alternatives or exclusions are mentioned.

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

Each tool has a distinct purpose, with clear differentiation between SYGNL/47 event tiers (live, 1m, 15m, archive), subscription management, and auxiliary tools like backtesting and regime detection. No overlapping functionality.

Naming Consistency4/5

Most tools follow a descriptive underscore pattern, with 'sygnl47_' prefix for event and subscription tools, and 'get_' for data retrieval. Some variation in verb prefixes (audit, check, estimate) but overall predictable and readable.

Tool Count4/5

21 tools is slightly high but justified by the tiered data access model for SYGNL/47 events and supporting infrastructure. The count covers core functionality without being excessive.

Completeness4/5

The tool set covers the stated domain well: event monitoring at different recency, backtesting, regime detection, and subscription management. Minor gaps like historical pricing data are not central to the server's focus.

Resources