Skip to main content
Glama

Backtesting Analysis Workflow

load_backtesting_workflow
Read-onlyIdempotent

Backtesting and simulation guardrails: survivorship, drawdown, Sharpe, day-of-week. REQUIRES get_database_schema then get_query_patterns to be called first (in that order). Call BEFORE writing SQL when the user asks to backtest, simulate, validate a strategy, test "what happens after X", compare forward returns, measure win rates or hit rates, compute Sharpe, drawdown, profit factor, rotation strategies, basket returns, or any hypothetical return over past data. Contains hard rules for survivorship bias, outlier handling, sampling design, day-of-week filters, and risk-adjusted metrics (Sharpe, Sortino, drawdown). Can be combined with other workflow tools.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.8/5.0
Behavior5/5

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

Beyond the readOnly and idempotent annotations, the description discloses the tool's contents (hard rules for bias, outliers, sampling, day-of-week, risk metrics), the required call order, and that it should be invoked before writing SQL. This adds meaningful behavioral context without contradicting any annotation.

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 dense but well-organized, starting with a succinct summary, followed by a required-order callout, then a comprehensive use-case list. Every sentence provides actionable value, though the use-case enumeration is slightly long and could be condensed.

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?

Given the zero-parameter schema, an output schema, and informative annotations, the description fully covers the necessary context: when to invoke, prerequisites, contents, and combinability. No critical information is missing for selecting and using this tool.

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?

The tool has zero parameters, and the schema coverage is 100%, so the baseline is 4. The description appropriately adds no parameter-specific details since none exist, and it doesn't need to compensate for any schema gaps.

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 function as 'Backtesting and simulation guardrails' and lists specific metrics and biases it covers (survivorship, drawdown, Sharpe, day-of-week). This distinguishes it from sibling workflow loaders by domain and makes the 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?

The description gives explicit trigger conditions ('when the user asks to backtest, simulate, validate...') and mandatory prerequisite ordering ('REQUIRES get_database_schema then get_query_patterns to be called first'). It also notes that the tool can be combined with other workflows, providing comprehensive 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

A4.4/5.0
Disambiguation5/5

Each tool targets a distinct aspect of stock data workflow: schema discovery, query patterns, raw data access, Excel export, and eight specialized analysis workflows. The load_*_workflow tools are clearly differentiated by domain (earnings, filing, insider, etc.) with explicit usage criteria. There is no real overlap or confusion between tools.

Naming Consistency4/5

Most tools follow a consistent verb_noun snake_case pattern (get_database_schema, get_query_patterns, load_*_workflow, export_to_excel). The only deviation is 'stock_data_query' which places the noun first rather than the verb, but it remains readable and fits the overall naming style. The consistent use of snake_case and descriptive prefixes makes the set predictable.

Tool Count5/5

With 12 tools, the server is well-scoped for its purpose of comprehensive US stock data analysis. Each tool earns its place: two prerequisite/metadata tools, one query executor, one export utility, and eight distinct workflow loaders covering major analysis types. There is no bloat or redundancy.

Completeness5/5

The tool set provides a complete lifecycle for stock data analysis: schema discovery → query patterns → data query → specialized workflows (backtesting, comparison, earnings, filings, fundamentals, insider, screening, technical) and export. It covers all major query types described in the schema tool and leaves no obvious dead ends; agents can handle a wide range of financial questions.

Resources