Skip to main content
Glama

Technical Analysis Workflow

load_technical_workflow
Read-onlyIdempotent

Load technical workflow for RSI, MACD, SMA, Bollinger Bands, entry/exit. REQUIRES get_database_schema then get_query_patterns to be called first (in that order). Call BEFORE writing SQL when the user asks about RSI, MACD, moving averages, Bollinger Bands, support/resistance, overbought/oversold, momentum, trend, chart patterns, golden cross, entry/exit signals, or "is X oversold/overbought". Can be combined with other workflow tools.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so safety is covered. The description adds behavioral context about the prerequisite call order and invocation timing before SQL writing, which goes beyond annotations. No contradictions.

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 information-dense and front-loaded with the core purpose, followed by prerequisites and triggers. Minor redundancy ('entry/exit' appears twice) prevents a perfect score, but every sentence earns its place.

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 no parameters, strong annotations, and an output schema present, the description covers all necessary aspects: purpose, prerequisites, trigger conditions, and combinability. It is complete for this tool's role.

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, so schema coverage is complete. The description doesn't need to explain parameters, and the baseline score of 4 applies.

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 directly states it loads a 'technical workflow' for specific indicators (RSI, MACD, SMA, Bollinger Bands, entry/exit), making the verb and resource clear. It distinguishes from sibling workflow tools like fundamental or earnings by listing technical analysis indicators and signal types.

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 explicitly gives ordering prerequisites ('REQUIRES get_database_schema then get_query_patterns to be called first') and when to invoke ('Call BEFORE writing SQL when the user asks about...') with a comprehensive trigger list. It also notes combinability with other workflow tools, effectively covering when and how to use it.

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