backtest_rsi_mean_reversion
Run RSI mean-reversion strategy backtest.
`period`: history window, e.g. "1y","2y","5y","10y" (default "2y").
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lower | No | ||
| upper | No | ||
| length | No | ||
| period | No | 2y | |
| ticker | Yes |
Run RSI mean-reversion strategy backtest.
`period`: history window, e.g. "1y","2y","5y","10y" (default "2y").
| Name | Required | Description | Default |
|---|---|---|---|
| lower | No | ||
| upper | No | ||
| length | No | ||
| period | No | 2y | |
| ticker | Yes |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description only states the action without disclosing side effects, return format, or input validation. It does not explain what output the backtest produces or whether any data is mutated, leaving the agent with little behavioral understanding.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no fluff, front-loading the purpose and then providing a parameter detail. It is appropriately short, though the brevity borders on under-specification.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 5 parameters, no annotations, and no output schema, this description is severely lacking. It does not describe required parameters, output, or behavior, making it difficult for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description explains only the `period` parameter with examples, but leaves `lower`, `upper`, `length`, and `ticker` undefined. With schema description coverage at 0%, the description fails to compensate for the missing property descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool runs an RSI mean-reversion strategy backtest, with a specific verb and resource. It is distinguishable from sibling tools like backtest_macd_momentum by the strategy name, though it does not explicitly name alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description offers no guidance on when to use this tool versus alternatives, nor any exclusions or prerequisites. The strategy name implies a context, but the agent is left to infer when this backtest is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Several tools overlap significantly: plot_charts is an explicit alias for generate_charts, generate_chart_pack and generate_charts have similar purposes, and backtesting tools like backtest_macd_momentum vs backtest_macd_trend_follower or backtest_mean_reversion_rsi_bb vs backtest_rsi_mean_reversion are easily confused. The sector tools also have fuzzy boundaries.
Most tools follow a clear verb_noun pattern (analyze_*, backtest_*, get_*, generate_*). However, two tools use a 'tool' suffix (analyze_sector_intelligence_tool, find_sector_stock_pipeline_tool) which deviates from the otherwise consistent naming style.
At 25 tools, the server is at the heavy end of the acceptable range. The scope is broad (analysis, backtesting, charting, portfolio optimization, alerts), but redundant chart tools and overlapping backtest strategies inflate the count and hurt focus.
The toolset covers the core domain well: technical analysis, backtesting, trade planning, portfolio optimization, quotes, news, and alerts. Minor gaps exist, such as no watchlist management tool (scanning only) and no direct historical data fetch, but these are workable around the existing tools.