Skip to main content
Glama
lightkeeper90

ultimate-tradingview-agent

📈 Ultimate TradingView Agent — AI Trading Intelligence Framework

The most complete AI-powered trading toolkit for Claude and MCP clients. Backtesting + Live Sentiment + Yahoo Finance + 30+ Technical Analysis Tools — all in one MCP server.

License: MIT Python 3.10+ MCP Ready OpenClaw Ready Version PyPI GitHub Sponsors

⭐ If this tool improves your workflow, please star the repo and consider sponsoring — it keeps the project alive and growing!


🎥 Framework Demo

https://github-production-user-asset-6210df.s3.amazonaws.com/67838093/478689497-4a605d98-43e8-49a6-8d3a-559315f6c01d.mp4


Related MCP server: tradingview-mcp

🏗️ Architecture

ultimate-tradingview-agent Architecture


✨ Why ultimate-tradingview-agent?

Feature

ultimate-tradingview-agent

Traditional Setups

Bloomberg Terminal

Setup Time

5 minutes

Hours (Docker, Conda...)

Weeks (Contracts)

Cost

Free & Open Source

Variable

$30k+/year

Backtesting

✅ 6 strategies + Sharpe

❌ Manual scripting

✅ Proprietary

Live Sentiment

✅ Reddit + RSS news

❌ Separate setup

✅ Terminal

Market Data

✅ Live / Real-Time

Historical / Delayed

Live

API Keys

None required

Multiple (OpenAI, etc.)

N/A


🚀 Quick Start (5 Minutes)

Install via pip

pip install ultimate-tradingview-agent-server

Claude Desktop Config (claude_desktop_config.json)

Note: On macOS, GUI apps like Claude Desktop may not have ~/.local/bin in their PATH. Use the full path to uvx to avoid "command not found" errors.

{
  "mcpServers": {
    "tradingview": {
      "command": "/Users/YOUR_USERNAME/.local/bin/uvx",
      "args": ["--from", "ultimate-tradingview-agent-server", "ultimate-tradingview-agent"]
    }
  }
}

On Linux, replace /Users/YOUR_USERNAME with /home/YOUR_USERNAME. On Windows, use %USERPROFILE%\.local\bin\uvx.exe.

Or run from source

git clone https://github.com/atilaahmettaner/ultimate-tradingview-agent
cd ultimate-tradingview-agent
uv run ultimate-tradingview-agent

📱 Use via Telegram, WhatsApp & More (OpenClaw)

Connect this server to Telegram, WhatsApp, Discord and 20+ messaging platforms using OpenClaw — a self-hosted AI gateway. Tested & verified on Hetzner VPS (Ubuntu 24.04).

How It Works

OpenClaw routes Telegram messages to an AI agent. The agent uses trading.py — a thin Python wrapper — to call ultimate-tradingview-agent functions and return formatted results. No MCP protocol needed between OpenClaw and the server; it's a direct Python import.

Telegram → OpenClaw agent (AI model) → trading.py (bash) → ultimate-tradingview-agent → Yahoo Finance

Quick Setup

# 1. Install UV and ultimate-tradingview-agent
curl -LsSf https://astral.sh/uv/install.sh | sh && source ~/.bashrc
uv tool install ultimate-tradingview-agent-server

# 2. Configure OpenClaw channels
cat > ~/.openclaw/openclaw.json << 'EOF'
{
  channels: {
    telegram: {
      botToken: "YOUR_BOT_TOKEN_HERE",
    },
  },
}
EOF

# 3. Configure gateway + agent
openclaw config set gateway.mode local
openclaw config set acp.defaultAgent main

# 4. Set your AI model (choose ONE option below)
openclaw configure --section model

# 5. Install the skill + tool wrapper
mkdir -p ~/.agents/skills/ultimate-tradingview-agent ~/.openclaw/tools
curl -fsSL https://raw.githubusercontent.com/atilaahmettaner/ultimate-tradingview-agent/main/openclaw/SKILL.md \
  -o ~/.agents/skills/ultimate-tradingview-agent/SKILL.md
curl -fsSL https://raw.githubusercontent.com/atilaahmettaner/ultimate-tradingview-agent/main/openclaw/trading.py \
  -o ~/.openclaw/tools/trading.py && chmod +x ~/.openclaw/tools/trading.py

# 6. Start the gateway
openclaw gateway install
systemctl --user start openclaw-gateway.service

Choose Your AI Model

OpenRouter is not required — use whichever provider you have a key for:

Provider

Model ID for OpenClaw

Get Key

OpenRouter (aggregator — access to all models)

openrouter/google/gemini-3-flash-preview

openrouter.ai/keys

Anthropic (Claude direct)

anthropic/claude-sonnet-4-5

console.anthropic.com

Google (Gemini direct)

google/gemini-2.5-flash

aistudio.google.com

OpenAI (GPT direct)

openai/gpt-4o-mini

platform.openai.com

# Examples — set your chosen model:
openclaw config set agents.defaults.model "openrouter/google/gemini-3-flash-preview"  # via OpenRouter
openclaw config set agents.defaults.model "anthropic/claude-sonnet-4-5"               # Anthropic direct
openclaw config set agents.defaults.model "google/gemini-2.5-flash"                   # Google direct

⚠️ Important: Prefix must match your provider. google/... needs a Google API key. openrouter/... needs an OpenRouter key.

⚠️ Common Mistakes

Symptom

Cause

Fix

Unrecognized keys: mcpServers

mcpServers not supported in this version

Remove from config, use bash wrapper

No API key for provider "google"

Used google/model but only have OpenRouter key

Use openrouter/google/model instead

which agent? loop

acp.defaultAgent not set

openclaw config set acp.defaultAgent main

Gateway won't start

gateway.mode missing

openclaw config set gateway.mode local

Test Your Bot

Once running, send your Telegram bot:

market snapshot
backtest RSI strategy for AAPL, 1 year
compare all strategies for BTC-USD

👉 Full OpenClaw Setup Guide →


Unlike basic screeners, this framework deploys specialized AI agents that debate findings in real-time:

  1. 🛠️ Technical Analyst — Bollinger Bands (±3 proprietary rating), RSI, MACD

  2. 🌊 Sentiment & Momentum Analyst — Reddit community sentiment + price momentum

  3. 🛡️ Risk Manager — Volatility, drawdown risk, mean-reversion signals

Output: STRONG BUY / BUY / HOLD / SELL / STRONG SELL with confidence score


🔧 All 30+ MCP Tools

📊 Backtesting Engine (New in v0.6.0)

Tool

Description

backtest_strategy

Backtest 1 of 6 strategies with institutional metrics (Sharpe, Calmar, Expectancy)

compare_strategies

Run all 6 strategies on same symbol and rank by performance

6 Strategies to Test:

  • rsi — RSI oversold/overbought mean reversion

  • bollinger — Bollinger Band mean reversion

  • macd — MACD golden/death cross

  • ema_cross — EMA 20/50 Golden/Death Cross

  • supertrend — ATR-based Supertrend trend following 🔥

  • donchian — Donchian Channel breakout (Turtle Trader style)

Metrics you get: Win Rate, Total Return, Sharpe Ratio, Calmar Ratio, Max Drawdown, Profit Factor, Expectancy, Best/Worst Trade, vs Buy-and-Hold, with realistic commission + slippage simulation.

Example prompt: "Compare all strategies on BTC-USD for 2 years"
→ #1 Supertrend: +31.5% | Sharpe: 2.1 | WR: 62%
→ #2 Bollinger:  +18.3% | Sharpe: 3.4 | WR: 75%
→ Buy & Hold:    -5.0%

💰 Yahoo Finance — Real-Time Prices (New in v0.6.0)

Tool

Description

yahoo_price

Real-time quote: price, change %, 52w high/low, market state

market_snapshot

Global overview: S&P500, NASDAQ, VIX, BTC, ETH, EUR/USD, SPY, GLD

Supports: Stocks (AAPL, TSLA, NVDA), Crypto (BTC-USD, ETH-USD, SOL-USD), ETFs (SPY, QQQ, GLD), Indices (^GSPC, ^DJI, ^IXIC, ^VIX), FX (EURUSD=X), Turkish (THYAO.IS, SASA.IS)


🧠 AI Sentiment & Intelligence (New in v0.5.0)

Tool

Description

market_sentiment

Reddit sentiment across finance communities (bullish/bearish score, top posts)

financial_news

Live RSS headlines from Reuters, CoinDesk, CoinTelegraph

combined_analysis

Power Tool: TradingView technicals + Reddit sentiment + live news → confluence decision


📈 Technical Analysis Core

Tool

Description

get_technical_analysis

Full TA: RSI, MACD, Bollinger, 23 indicators with BUY/SELL/HOLD

get_multiple_analysis

Bulk TA for multiple symbols at once

get_bollinger_band_analysis

Proprietary ±3 BB rating system

get_stock_decision

3-layer decision engine (ranking + trade setup + quality score)

screen_stocks

Multi-exchange screener with 20+ filter criteria

scan_by_signal

Scan by signal type (oversold, trending, breakout...)

get_candlestick_patterns

15 candlestick pattern detector

get_multi_timeframe_analysis

Weekly→Daily→4H→1H→15m alignment analysis


🌍 Multi-Exchange Support

Exchange

Tools

Binance

Crypto screener, all pairs

KuCoin / Bybit+

Crypto screener

NASDAQ / NYSE

US stocks (AAPL, TSLA, NVDA...)

EGX (Egypt)

egx_market_overview, egx_stock_screener, egx_trade_plan, egx_fibonacci_retracement

Turkish (BIST)

Via TradingView screener


💬 Example AI Conversations

You: "Give me a full market snapshot right now"
AI: [market_snapshot] → S&P500 -3.4%, BTC +0.1%, VIX 31 (+13%), EUR/USD 1.15

You: "What is Reddit saying about NVDA?"
AI: [market_sentiment] → Strongly Bullish (0.41) | 23 posts | 18 bullish

You: "Backtest RSI strategy on BTC-USD for 2 years"
AI: [backtest_strategy] → +31.5% return | 100% win rate | 2 trades | B&H: -5%

You: "Which strategy worked best on AAPL in the last 2 years?"
AI: [compare_strategies] → Supertrend #1 (+14.6%, Sharpe 3.09), MACD last (-9.1%)

You: "Analyze TSLA with all signals: technical + sentiment + news"
AI: [combined_analysis] → BUY (Technical STRONG BUY + Bullish Reddit + Positive news)

💖 Support the Project

This framework is free and open source, built in spare time. If it saves you hours of research or helps you make better decisions, please consider sponsoring:

Tier

Monthly

What You Get

☕ Coffee

$5

Heartfelt gratitude + name in README

🚀 Supporter

$15

Above + priority bug fixes

💎 Pro

$30

Above + priority feature requests

Every sponsor directly funds new features like Walk-Forward Backtesting, Twitter/X sentiment, and managed cloud hosting.


📋 Roadmap

  • TradingView technical analysis (30+ indicators)

  • Multi-exchange screener (Binance, KuCoin, EGX, US stocks)

  • Reddit sentiment analysis

  • Live financial news (RSS)

  • Yahoo Finance real-time prices

  • Backtesting engine (6 strategies + Sharpe/Calmar/Expectancy)

  • Walk-forward backtesting (overfitting detection)

  • Twitter/X market sentiment

  • Paper trading simulation

  • Managed cloud hosting (no local setup)


📄 License

MIT License — see LICENSE for details.


Disclaimer: This tool is for educational and research purposes only. It does not constitute financial advice. Always do your own research before making investment decisions.

Available Tools

27 tools
advanced_candle_patternB

Advanced candle pattern analysis using multi-timeframe data.

Args: exchange: Exchange name (BINANCE, KUCOIN, etc.) base_timeframe: Base timeframe for analysis (5m, 15m, 1h, 4h) pattern_length: Number of consecutive periods to analyze (2-4) min_size_increase: Minimum percentage increase in candle size limit: Maximum number of results to return

Returns: Coins with progressive candle size increase patterns

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
exchangeNoKUCOIN
base_timeframeNo15m
pattern_lengthNo
min_size_increaseNo

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It describes the analysis behavior and return value, implying a non-destructive scan. However, it does not explicitly state read-only semantics, data freshness, rate limits, or error behavior. It provides basic transparency but leaves out significant behavioral context.

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 well-structured with separate Args and Returns sections. It is concise, front-loaded with the main purpose, and each sentence contributes meaningful information. No unnecessary verbosity or redundancy.

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?

The description is reasonably complete for a basic scan tool, but there are notable gaps. It lacks return format details (only says 'Coins with progressive candle size increase patterns'), no guidance on result interpretation, and no differentiation from similar siblings. The parameter explanations are good, but the overall operational context is incomplete for an agent.

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 schema has 0% description coverage, so the description's Args section is crucial. It explains all five parameters concisely (e.g., 'pattern_length: Number of consecutive periods to analyze (2-4)') with meaningful details like allowed ranges. This adds value beyond the raw schema, even if some like min_size_increase could be more precise about percentages.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it performs 'Advanced candle pattern analysis using multi-timeframe data' and specifies the output: 'Coins with progressive candle size increase patterns'. This identifies a specific functionality, but it does not explicitly differentiate from sibling tools like consecutive_candles_scan or volume_breakout_scanner.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It does not mention any use cases, exclusions, or alternatives such as consecutive_candles_scan. The only hint is the tool name and parameter names, which is insufficient for an agent to make a selection decision.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

backtest_strategyA

Backtest a trading strategy on historical data with institutional-grade metrics.

Args: symbol: Yahoo Finance symbol — stocks (AAPL, TSLA, NVDA), crypto (BTC-USD, ETH-USD), ETFs (SPY, QQQ), indices (^GSPC, ^IXIC), Turkish (THYAO.IS) strategy: Trading strategy to test: 'rsi' — Buy oversold (RSI<30), Sell overbought (RSI>70) 'bollinger' — Buy at lower Bollinger Band, Sell at middle band 'macd' — Buy on MACD golden cross, Sell on death cross 'ema_cross' — Buy EMA20>EMA50 crossover, Sell on reversal 'supertrend' — Buy on bullish Supertrend flip 'donchian' — Buy Donchian Channel breakout (Turtle Trader style) period: Historical data period: '1mo', '3mo', '6mo', '1y', '2y' initial_capital: Starting capital in USD (default: $10,000) commission_pct: Per-trade commission % (default: 0.1%) slippage_pct: Per-trade slippage % (default: 0.05%) interval: Timeframe: '1d' (daily, default) or '1h' (hourly) include_trade_log: Include full per-trade log with entry/exit/P&L detail (default: False) include_equity_curve: Include equity curve data points for charting (default: False)

Returns: Institutional-grade backtest report: win rate, total return, Sharpe ratio, Calmar ratio, max drawdown, profit factor, expectancy, best/worst trade, vs buy-and-hold benchmark. Optionally includes full trade log and equity curve.

ParametersJSON Schema
NameRequiredDescriptionDefault
periodNo1y
symbolYes
intervalNo1d
strategyYes
slippage_pctNo
commission_pctNo
initial_capitalNo
include_trade_logNo
include_equity_curveNo

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It discloses the return metrics and optional outputs (trade log, equity curve), but it does not describe important behavioral traits such as data source reliability, potential look-ahead bias, execution assumptions, or the fact that no data is modified. It implies read-only behavior but does not state it explicitly.

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 well-structured with an Args section and a Returns section, using bullet points and bolded parameter names. It is longer than necessary but every line adds value, especially the strategy definitions. The purpose is front-loaded. It could be slightly more concise, but the structure aids readability.

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

Completeness4/5

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

Given 9 parameters, no output schema, and no annotations, the description is quite complete. It covers all parameters, provides examples, and lists the returned metrics. However, it does not specify the exact structure or format of the trade log and equity curve, nor does it mention any limitations (e.g., data availability for certain symbols). This is a minor gap but not critical for a backtest tool.

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 input schema has no descriptions (0% coverage), so the description fully compensates by providing thorough explanations for all 9 parameters, including valid values (e.g., symbol examples like 'AAPL', 'BTC-USD'), strategy definitions with explanations, default values, and the effect of each parameter. This goes far beyond the schema.

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: 'Backtest a trading strategy on historical data with institutional-grade metrics.' It specifies the verb (Backtest), the resource (trading strategy), and the output (metrics). It distinguishes from sibling tools like compare_strategies and walk_forward_backtest_strategy by focusing on a single strategy backtest.

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 provides clear context about what the tool does and lists many strategies, but it does not explicitly state when to use this tool versus alternatives like compare_strategies or walk_forward_backtest_strategy. There are no usage exclusions or prerequisites, but the use case is implied through the description. No explicit 'when not to use' or 'use this instead' guidance is present.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

bollinger_scanA

Scan for assets with low Bollinger Band Width (squeeze detection). Works with crypto and stocks (EGX, BIST, etc.).

Args: exchange: Exchange - crypto: KUCOIN, BINANCE, BYBIT; stocks: EGX, BIST, NASDAQ, NYSE, BURSA, HKEX timeframe: One of 5m, 15m, 1h, 4h, 1D, 1W, 1M bbw_threshold: Maximum BBW value to filter (default 0.04) limit: Number of rows to return (max 100)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
exchangeNoKUCOIN
timeframeNo4h
bbw_thresholdNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses the scanning behavior (low BBW filter), valid exchanges and timeframes, the meaning of bbw_threshold, and the limit constraint (max 100). It does not mention output format or pagination, but the operation is clearly a read-only scan and these gaps are partially covered by the output schema.

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 well-structured with a brief summary followed by a labeled args list. It is slightly verbose due to listing all exchange values, but every sentence adds necessary information and nothing is extraneous.

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 tool's moderate complexity (4 optional params, no required fields) and the presence of an output schema, the description is complete. It explains all parameters and the core scan logic, making it sufficient for correct invocation and interpretation.

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?

Schema description coverage is 0%, so the description fully compensates by explaining every parameter: exchange lists valid values, timeframe lists options, bbw_threshold states its filtering meaning, and limit defines its purpose. This is exceptionally clear and exceeds the baseline.

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 uses a specific verb and resource: 'Scan for assets with low Bollinger Band Width (squeeze detection).' It clearly distinguishes this tool from siblings like volume_breakout_scanner or market_snapshot, and explicitly mentions supported asset types (crypto and stocks).

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?

The description provides clear context on when to use the tool: to detect Bollinger Band squeezes. It also specifies supported exchanges and timeframes, giving users concrete usage boundaries. However, it does not explicitly exclude alternatives or mention when not to use it, stopping short of a full when/when-not guideline.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

coin_analysisA

Get detailed analysis for a specific asset (coin or stock) on specified exchange and timeframe.

Args: symbol: Symbol - crypto: "BTCUSDT", "ETHUSDT"; stocks: "COMI" (EGX), "THYAO" (BIST) exchange: Exchange - crypto: KUCOIN, BINANCE; stocks: EGX, BIST, NASDAQ, NYSE, BURSA, HKEX timeframe: Time interval (5m, 15m, 1h, 4h, 1D, 1W, 1M)

Returns: Detailed analysis with all indicators and metrics

ParametersJSON Schema
NameRequiredDescriptionDefault
symbolYes
exchangeNoKUCOIN
timeframeNo15m

TDQS

A3.9/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses that the tool returns 'detailed analysis with all indicators and metrics,' implying a read-only, informative operation and a comprehensive result set. However, it does not mention data sources, freshness, potential failures, or any operational limitations. It is not contradictory, but it is not rich in behavioral detail.

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 well-organized: a one-sentence purpose, then a clean Args list with examples, and a Returns line. Every section earns its place, with no wasted words. It is appropriately concise for a 3-parameter tool.

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

Completeness4/5

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

Given three parameters, no output schema, and no annotations, the description provides sufficient information for invocation by specifying all parameters and return type at a high level. It could be more complete by detailing what 'all indicators and metrics' includes, but the tool is still usable and understandable in its current form.

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?

With 0% schema description coverage, the description fully compensates by documenting all three parameters with explicit examples and allowed values: symbol examples for crypto and stocks, a list of supported exchanges, and timeframe intervals. It adds meaning beyond the raw schema by providing concrete usage patterns, making correct invocation much easier.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action: 'Get detailed analysis for a specific asset (coin or stock) on specified exchange and timeframe.' It clearly identifies the resource (asset) and scope, distinguishing it from bulk scanners/overviews. However, it does not explicitly distinguish itself from similar sibling tools like combined_analysis or multi_agent_analysis, so it falls short of a perfect 5.

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?

Usage context is implied: use this tool when you need detailed analysis for a single symbol on a particular exchange/timeframe. The presence of analyzer siblings like multi_timeframe_analysis and combined_analysis makes this guidance implicit rather than explicit. There is no 'when not to use' or mention of alternatives, so the agent must infer selection criteria from the examples.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

combined_analysisB

POWER TOOL: TradingView technical analysis + Reddit sentiment + Financial news. Confluence analysis of all signals for a complete market picture.

Args: symbol: Asset symbol ("AAPL", "BTCUSDT", "THYAO") exchange: Exchange (NASDAQ, NYSE, BINANCE, KUCOIN, BIST, EGX) timeframe: Analysis timeframe (5m, 15m, 1h, 4h, 1D, 1W)

ParametersJSON Schema
NameRequiredDescriptionDefault
symbolYes
exchangeNoNASDAQ
timeframeNo1D

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It lists input sources and parameters but does not describe what the output looks like, whether data is live or delayed, or any rate limits or side effects. The absence of any return-value detail is a significant gap for an aggregation tool.

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 extremely concise and front-loaded: a two-line summary followed by a tight argument list. Every sentence earns its place, and the 'POWER TOOL' label immediately signals high-level aggregation.

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

Completeness2/5

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

Input parameters are well covered, but the tool has no output schema and the description does not explain what the returned analysis contains or how the confluence is presented. Given the tool's moderate complexity, this omission leaves the agent guessing about the tool's actual deliverable.

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?

Schema description coverage is 0%, and the description compensates by defining all three parameters with examples and allowed values: symbol examples like 'AAPL' and 'BTCUSDT', exchange list, and timeframe list. It adds meaning beyond the bare schema, though it doesn't discuss defaults or formatting constraints.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the tool combines TradingView technical analysis, Reddit sentiment, and financial news into a 'confluence analysis' for a 'complete market picture.' This distinguishes it from more specialized siblings like financial_news or market_sentiment, though it lacks a single explicit verb like 'retrieve' or 'generate.'

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 phrase 'Confluence analysis of all signals for a complete market picture' implies when to use the tool, but it never explicitly contrasts it with alternatives such as multi_timeframe_analysis or multi_agent_analysis. There is no when-not-to-use guidance, making the usage context clear but not fully explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

compare_strategiesA

Run all 6 strategies (RSI, Bollinger, MACD, EMA Cross, Supertrend, Donchian) on the same symbol and return a ranked performance leaderboard.

Args: symbol: Yahoo Finance symbol (AAPL, BTC-USD, SPY…) period: Historical data period: '1mo', '3mo', '6mo', '1y', '2y' initial_capital: Starting capital in USD (default: $10,000) interval: Timeframe: '1d' (daily, default) or '1h' (hourly)

Returns: Ranked leaderboard of all 6 strategies vs buy-and-hold benchmark.

ParametersJSON Schema
NameRequiredDescriptionDefault
periodNo1y
symbolYes
intervalNo1d
initial_capitalNo

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It clearly explains that the tool runs strategies and returns a leaderboard, which is a read-only analysis. However, it does not explicitly state non-destructiveness, rate limits, or computation time, which would enhance transparency for agent decision-making.

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 efficiently structured with a clear purpose statement followed by an organized Args block. While slightly longer than strictly necessary, each sentence provides useful information and no redundancy is present.

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

Completeness4/5

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

The description covers the main return value (leaderboard vs buy-and-hold benchmark) and all parameters, which is sufficient given the absence of an output schema. It lacks details on ranking criteria (e.g., return vs. risk) but overall provides adequate context for the agent to invoke the tool.

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?

Schema description coverage is 0%, so the description fully compensates by explaining every parameter: symbol with examples, period with allowed values, initial_capital with default, and interval with default. This goes well beyond the schema's bare titles and provides actionable semantics.

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 uses a specific verb 'Run' and clearly states the resource ('all 6 strategies') and the output ('ranked performance leaderboard'). It lists the exact strategies, which distinguishes it from sibling tools like backtest_strategy that focus on a single strategy.

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 for comparing all six strategies on the same symbol, but it does not explicitly state when to use this tool versus alternatives such as backtest_strategy or walk_forward_backtest_strategy. No exclusions or preferred scenarios are given, leaving the agent to infer context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

consecutive_candles_scanA

Scan for coins with consecutive growing/shrinking candles pattern.

Args: exchange: Exchange name (BINANCE, KUCOIN, etc.) timeframe: Time interval (5m, 15m, 1h, 4h) pattern_type: "bullish" (growing candles) or "bearish" (shrinking candles) candle_count: Number of consecutive candles to check (2-5) min_growth: Minimum growth percentage for each candle limit: Maximum number of results to return

Returns: List of coins with consecutive candle patterns

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
exchangeNoKUCOIN
timeframeNo15m
min_growthNo
candle_countNo
pattern_typeNobullish

TDQS

A3.5/5.0
Behavior2/5

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

With no annotations, the description must disclose behavioral traits. It implies a read-only scan but does not explicitly state this, nor does it mention data source, freshness, pagination, rate limits, or error behaviors. The description is a simple docstring with args/returns, leaving significant behavioral context undisclosed.

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 concise and well-structured with an opening purpose sentence followed by formatted Arguments and Returns sections. Every parameter has a one-line explanation with no redundant text, making it efficient and easy to parse.

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

Completeness4/5

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

Despite having no output schema, the description states that the return is a 'List of coins' and explains all input parameters. It does not elaborate on the structure of each coin in the list (e.g., growth percentages, symbols), which would improve completeness, but overall it covers the essential aspects for a scanning tool with six parameters.

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?

Schema description coverage is 0%, so the description fully compensates by providing clear meanings for all six parameters: exchange, timeframe, pattern_type, candle_count, min_growth, and limit. It even specifies valid values (e.g., 'bullish'/'bearish', 2-5) beyond the schema's default-only definitions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb+resource: 'Scan for coins with consecutive growing/shrinking candles pattern.' This clearly distinguishes it from general scanners, though it does not explicitly name alternatives like 'advanced_candle_pattern' or other sibling tools. The pattern_type parameter clarifies bullish/bearish, making the purpose concrete.

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

Usage Guidelines2/5

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

No guidance is given on when to use this tool versus alternatives. It does not mention exclusions, prerequisites, or specific scenarios (e.g., 'use this when you need to identify consecutive candle streaks'). The description only states what it does, not when to choose it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

egx_fibonacci_retracementA

Fibonacci retracement analysis for EGX stocks — identifies key support/resistance levels at standard Fibonacci ratios (23.6%, 38.2%, 50%, 61.8%, 78.6%).

Calculates retracement and extension levels from the period swing high/low, detects trend direction, and shows where the current price sits relative to key Fibonacci zones (golden pocket, 50% retracement, etc.).

Args: symbol: EGX stock symbol (e.g., "COMI", "TMGH", "FWRY") lookback: Period for swing high/low detection — "1M", "3M", "6M", "52W", "ALL" (default 52W) timeframe: Analysis timeframe for current indicators — 5m, 15m, 1h, 4h, 1D, 1W, 1M (default 1D)

Returns: Fibonacci retracement & extension levels, price position analysis, key zones, and context.

ParametersJSON Schema
NameRequiredDescriptionDefault
symbolYes
lookbackNo52W
timeframeNo1D

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations provided, the description carries full responsibility for behavioral disclosure. It clearly explains what the tool calculates (retracement/extension levels, trend direction, price position) and what it returns. It does not mention limitations or data source, but for a read-only analysis tool, the core behavior is well covered.

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 well-structured with a clear opening sentence, a detailed Args section, and a Returns summary. Every sentence provides useful information with no fluff or redundancy. The front-loaded purpose makes it easy to understand quickly.

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

Completeness4/5

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

Given the tool's moderate complexity (3 parameters, no output schema), the description is largely complete. It explains the analysis approach, parameters, and return values in broad terms. While the return format is not deeply specified, the description gives enough context for an agent to understand what to expect.

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?

Schema description coverage is 0%, so the description's Args section is essential. It provides meaningful explanations for all three parameters, including example values (e.g., 'COMI'), valid enumeration for lookback and timeframe, and defaults. This fully compensates for the schema's lack of detail.

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 uses a specific verb ('analysis') and identifies the resource ('EGX stocks') with clear scope: identifying support/resistance at standard Fibonacci ratios. It also lists the specific ratios and zones, making it distinct from sibling tools like egx_sector_scan or bollinger_scan.

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 usage is implied: it performs Fibonacci retracement analysis, but there is no explicit guidance on when to use this tool versus alternatives like egx_stock_screener or multi_timeframe_analysis. No exclusions or alternative tools are mentioned, so it only implicitly conveys its purpose.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

egx_index_analysisA

Analyze an EGX index showing constituent performance with full indicators.

Returns index-level statistics and per-stock breakdown.

Args: index: Index name - EGX30 (blue chips), EGX70 (mid/small cap), EGX100 (broad), SHARIAH33 (Shariah-compliant), EGX35LV (low volatility), TAMAYUZ (small/micro-cap) timeframe: One of 5m, 15m, 1h, 4h, 1D, 1W, 1M (default 1D) limit: Number of stocks to show in detail (max 100)

ParametersJSON Schema
NameRequiredDescriptionDefault
indexNoEGX30
limitNo
timeframeNo1D

TDQS

A3.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It states the tool returns index-level statistics and per-stock breakdown, but does not disclose whether it is read-only, any authentication or rate-limit requirements, or potential data freshness issues. This is minimal behavioral disclosure for a tool with no annotation support.

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 well-structured: a one-sentence summary, a return-type line, and a clear Args list. Each sentence earns its place, and the Args section is detailed yet not bloated. The front-loading of the purpose makes it immediately understandable.

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

Completeness4/5

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

The tool has no output schema or annotations, so the description needs to cover purpose, parameters, and return value. It does all three reasonably well. It could add examples or state that it is a read-only analysis, but the core information is present for a tool of this complexity.

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?

Schema description coverage is 0%, so the description must compensate. It thoroughly explains each parameter: index with enumerated values and descriptions, timeframe with allowed values and default, and limit with meaning and max value. This adds significant value beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool 'Analyze an EGX index showing constituent performance with full indicators' and specifies outputs ('index-level statistics and per-stock breakdown'). It uses a specific verb and resource, but does not explicitly differentiate from sibling tools like egx_market_overview or egx_sector_scan.

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 context (when you need EGX index analysis) but provides no explicit guidance on when to use this tool versus alternatives, nor any exclusions. Sibling tools like egx_market_overview or egx_sector_scan could overlap, and the description does not clarify selection criteria.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

egx_market_overviewA

Get a comprehensive overview of the Egyptian Exchange (EGX) market.

Shows top gainers, top losers, and most active stocks on EGX.

Args: timeframe: One of 5m, 15m, 1h, 4h, 1D, 1W, 1M (default 1D for stocks) limit: Number of stocks per category (max 20)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
timeframeNo1D

TDQS

A4.1/5.0
Behavior3/5

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

The description uses 'Get' to imply a read-only operation and lists the data categories, but it does not explicitly state safety characteristics, response structure, pagination, or data freshness. Since no annotations are provided, more behavioral disclosure would be beneficial, though nothing contradicts the likely safety profile.

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 concise and front-loaded with the main purpose, then directly transitions to an Args section with clear formatting. Every sentence earns its place, with no redundant or filler content.

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

Completeness4/5

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

The description covers the tool's purpose and parameter semantics thoroughly, which is sufficient for a simple market-overview tool. However, without an output schema, it does not describe the return format (e.g., a list of dictionaries), and it lacks explicit usage guidance relative to sibling tools. Still, the core information is present and well-structured.

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 provides detailed semantic meaning for both parameters: timeframe lists all valid values and defaults ('One of 5m, 15m, 1h, 4h, 1D, 1W, 1M (default 1D for stocks)'), and limit clarifies its purpose and upper bound ('Number of stocks per category (max 20)'). This fully compensates for the 0% schema description coverage.

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: 'Get a comprehensive overview of the Egyptian Exchange (EGX) market' and specifies exactly what it shows (top gainers, top losers, most active). This distinguishes it from sibling tools like top_gainers/top_losers, which are narrower in scope.

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 'comprehensive overview' phrasing implies usage for a broad market snapshot, but there is no explicit guidance on when to prefer this tool over its siblings or when not to use it. No alternative tools are named, leaving the agent to infer the appropriate context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

egx_sector_scanB

Scan EGX stocks by sector. Shows available sectors if none specified.

Args: sector: Sector name - banks, basic_resources, healthcare_and_pharma, industrial_goods_and_services, real_estate, travel_and_leisure, utilities, it_media_and_communication, food_beverages_and_tobacco, energy_and_support_services, trade_and_distributors, shipping_and_transportation, education_services, non_bank_financial_services, contracting_and_construction, textiles_and_durables, building_materials, paper_and_packaging. Leave empty to list all sectors. timeframe: One of 5m, 15m, 1h, 4h, 1D, 1W, 1M limit: Max results per sector (max 50)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
sectorNo
timeframeNo1D

TDQS

B3.2/5.0
Behavior2/5

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

With no annotations provided, the description carries the full transparency burden. It mentions that leaving sector empty lists available sectors, but does not disclose whether the operation is read-only, what the return format looks like, or any authentication or rate-limit considerations.

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 front-loaded with a clear one-sentence purpose and then organizes parameter details in an Args block. The long sector list is necessary because the schema lacks enums, but the structure remains readable and efficient.

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

Completeness2/5

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

There is no output schema, so the description should explain the return format, but it does not. It also lacks context on pagination, error handling, or relationship to sibling tools, making it incomplete for a scanning tool with no annotations.

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?

Schema description coverage is 0%, and the description fully compensates by enumerating all valid sector values, valid timeframe options, and the maximum limit of 50. This adds significant meaning beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool scans EGX stocks by sector, with an explicit verb and resource. However, it does not distinguish itself from the sibling tool 'egx_sector_scanner', so it lacks sibling differentiation.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like 'egx_sector_scanner'. It implies usage via the name and 'Shows available sectors if none specified', but gives no explicit when/when-not or alternative recommendations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

egx_sector_scannerA

Sector rotation scanner for EGX — identifies hot/cold sectors and top picks.

Scans all 18 EGX sectors, ranks them by momentum, and surfaces the best stocks in the top sectors with full trade setups.

Args: timeframe: One of 5m, 15m, 1h, 4h, 1D, 1W, 1M (default 1D) top_n_sectors: Number of top sectors to show stock picks for (1-18, default 5) top_n_stocks: Number of top stocks per highlighted sector (1-10, default 3) min_stock_score: Minimum stock score for picks (0-100, default 60)

Returns: Weighted market view, sector heatmap (all 18), top picks per sector, and rotation signals showing money flow direction.

ParametersJSON Schema
NameRequiredDescriptionDefault
timeframeNo1D
top_n_stocksNo
top_n_sectorsNo
min_stock_scoreNo

TDQS

A4.1/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses that it scans all 18 sectors, ranks by momentum, and returns a heatmap and rotation signals, which is useful. However, it does not mention limitations such as data freshness, interpretation of signals, or any potential side effects, leaving some transparency gaps.

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 a compact model: a one-sentence summary followed by structured Args and Returns sections. Every sentence adds value and the format is easy to parse, making it appropriately sized and front-loaded.

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

Completeness4/5

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

The Returns section explicitly lists the output components ('Weighted market view, sector heatmap, top picks, and rotation signals'), which is helpful given there is no output schema. It does not explain how to interpret rotation signals or any prerequisites, but the tool is a scanner with clear functionality, so the description is nearly complete.

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?

Schema description coverage is 0%, but the description fully compensates by documenting every argument with allowed values and defaults: 'timeframe: One of 5m, 15m, 1h, 4h, 1D, 1W, 1M (default 1D)', 'top_n_sectors: Number of top sectors to show stock picks for (1-18, default 5)', etc. This adds complete meaning beyond the bare schema.

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 it is a 'Sector rotation scanner for EGX' that 'identifies hot/cold sectors and top picks.' It goes on to explain it scans all 18 sectors, ranks by momentum, and surfaces best stocks, which is a specific verb+resource+scope. This distinguishes it from the sibling egx_sector_scan, which likely just scans sectors without momentum ranking or stock picks.

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 use when you want sector rotation analysis ('Sector rotation scanner') but does not explicitly state when to use this tool vs alternatives like egx_sector_scan or egx_market_overview. There are no exclusions or comparison guidance, so the context is implied rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

egx_stock_screenerA

Production stock ranking engine for EGX — finds strong stocks with actionable setups.

Uses a 100-point hybrid model combining: A. Trend & Momentum (50 pts) — EMA structure, RSI, MACD, relative performance B. Confirmation (20 pts) — Volume, ADX trend strength C. Risk-Adjusted Quality (15 pts) — ATR volatility, drawdown stability D. Fundamental Overlay (15 pts) — TradingView recommendation proxy

Stocks scoring 70+ automatically get trade setups (entry, stop, targets, S/R).

Args: timeframe: One of 5m, 15m, 1h, 4h, 1D, 1W, 1M (default 1D) min_score: Minimum stock score to include (0-100, default 55) index_filter: Filter by index — EGX30, EGX70, EGX100, SHARIAH33, EGX35LV, TAMAYUZ. Leave empty for all EGX stocks. limit: Number of results (max 50)

Returns: Ranked stocks with score breakdown. Stocks >=70 include full trade plans.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
min_scoreNo
timeframeNo1D
index_filterNo

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It details the 100-point scoring model, the 70+ threshold for trade setups, and the return structure, which is substantial. However, it does not mention potential rate limits, data freshness, or any restrictions beyond the scoring logic, so it is not a perfect 5.

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 well-structured with bullet points for the scoring model, front-loading the purpose, and every sentence adds value. It is appropriately detailed for a complex tool without being bloated.

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?

The description covers all essential aspects: purpose, scoring method, parameter semantics, and return values (ranked stocks with score breakdown, trade plans for high-scorers). Given there is no output schema, the 'Returns' section is sufficient and complete.

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?

Schema coverage is 0%, but the description fully documents all four parameters: timeframe with valid values and default, min_score with range and default, index_filter with specific indices and empty-for-all, and limit with max and default. This completely compensates for the missing schema descriptions.

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 is a 'production stock ranking engine for EGX' that 'finds strong stocks with actionable setups.' It specifies the resource (EGX stocks) and distinguishes itself from siblings like sector scans or index analysis.

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 use for stock screening and provides scoring details, but it does not explicitly say when to use this tool versus alternatives or mention exclusion criteria. There is no comparison to the many sibling tools, so usage guidance is only implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

egx_trade_planA

Generate a full trade plan for a specific EGX stock.

Produces: stock score, score breakdown, entry points (breakout + pullback), stop-loss, targets, risk/reward, nearest 3 supports, nearest 3 resistances, trade quality score, and actionable notes.

Args: symbol: EGX stock symbol (e.g., "COMI", "TMGH", "FWRY") timeframe: One of 5m, 15m, 1h, 4h, 1D, 1W, 1M (default 1D)

Returns: Complete trade plan with score, setup, risk controls, and S/R levels.

ParametersJSON Schema
NameRequiredDescriptionDefault
symbolYes
timeframeNo1D

TDQS

A4.1/5.0
Behavior3/5

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

With no annotations present, the description carries the burden of behavioral disclosure. It details the outputs thoroughly and implies a read-only analysis, but it never explicitly states that it is non-mutating or how it handles data freshness/real-time feeds. This is adequate but not fully transparent about side-effect boundaries.

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 well-organized with an intro, a Produces list, an Args section, and a Returns section. Every sentence adds value, though the Returns section partially repeats the Produces list, making it slightly less concise than ideal.

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

Completeness4/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 thoroughly covers what the tool returns (score breakdown, entry points, S/R levels, etc.). It also explains parameter values. It lacks details on error conditions or prerequisites (e.g., whether the symbol must be active), but for selection and invocation purposes it is nearly complete.

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?

Schema coverage is 0%, so the description must compensate. It does so admirably by listing examples for symbol (COMI, TMGH, FWRY) and enumerating all allowed timeframes for the timeframe parameter. This goes beyond the schema's bare 'string' type definitions.

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 a specific action ('Generate a full trade plan') for a specific resource ('a specific EGX stock'). It enumerates the outputs (score, entry points, stop-loss, targets, etc.) which distinguishes it from siblings like egx_market_overview or egx_stock_screener that serve different purposes.

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?

The context is clear: use when a trade plan is needed for a specific EGX stock. It implicitly excludes use for market overviews or scanning multiple stocks. However, it does not explicitly name alternative tools or state when-not-to-use, so it falls short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

financial_newsA

Real-time financial news from RSS feeds (Reuters, CoinDesk, etc.)

Args: symbol: Optional symbol filter ("AAPL", "BTC"). None = all news. category: Feed category ("crypto", "stocks", "all") limit: Max number of news items

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
symbolNo
categoryNostocks

TDQS

A4/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It mentions the data source (RSS feeds) but fails to disclose output format, potential latency, rate limits, or whether results are sorted. For a simple read-only tool, this is minimal but not sufficient.

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 concise, front-loaded with the main purpose, and uses a clear Args list. Every sentence earns its place with no fluff.

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?

The tool is simple and params are well-documented, but with no output schema, the description should mention what the response contains (e.g., article titles, links, dates). Without this, the description is incomplete for an agent expecting structured output.

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?

Schema coverage is 0%, but the description fully compensates by defining each parameter with examples: symbol (optional filter with examples), category (feed choices), and limit (max items). This adds meaning beyond the bare schema.

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 provides real-time financial news from RSS feeds, naming specific sources (Reuters, CoinDesk). This distinguishes it from sibling market analysis tools and gives a specific verb+resource.

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?

The description gives clear context (use for news), but does not explicitly mention alternatives or when-not scenarios. Given the distinct purpose, this is sufficient for basic usage guidance but lacks exclusionary info.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

market_sentimentA

Real-time Reddit sentiment analysis for stocks and crypto.

Args: symbol: Asset symbol ("AAPL", "BTC", "ETH", "TSLA") category: Subreddit group to search ("crypto", "stocks", "all") limit: Number of posts to analyze

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
symbolYes
categoryNoall

TDQS

A3.7/5.0
Behavior2/5

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

With no annotations, the description carries the full burden for behavioral disclosure. It mentions 'real-time' but doesn't describe output format, whether it's read-only, limitations, or how sentiment is computed. The description adds no details about side effects or expected response structure.

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 extremely concise: one sentence for purpose, then a compact args list. Every line is informative, no filler or redundant phrasing. Front-loaded purpose makes it immediately scannable.

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

Completeness2/5

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

Despite clear purpose and param docs, the description is incomplete given no output schema and no annotations. It fails to explain what the tool returns (e.g., sentiment score, post list), which is critical for correct invocation. Also lacks any mention of rate limits or usage prerequisites.

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?

Schema descriptions are empty (0% coverage), so the description must compensate. It does so fully by listing each parameter with examples and meaning: symbol examples, category allowed values, and limit as 'Number of posts to analyze'. This adds significant value beyond the bare schema.

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 explicitly states 'Real-time Reddit sentiment analysis for stocks and crypto' with a specific resource (Reddit posts) and scope (stocks/crypto). It clearly distinguishes itself from sibling tools like market_snapshot or financial_news by focusing on sentiment from Reddit.

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 use for sentiment analysis on Reddit discussions, but doesn't explicitly state when to use it versus alternatives like financial_news or market_snapshot. No exclusions or alternative recommendations are provided, so guidance is implied rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

market_snapshotA

Global market overview: major indices (S&P500, NASDAQ, Dow, VIX), top crypto (BTC, ETH, SOL, BNB), FX rates, and key ETFs. Powered by Yahoo Finance.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description carries the responsibility for behavioral disclosure. It mentions 'Powered by Yahoo Finance' and lists data categories, which adds some transparency about source and coverage, but it does not disclose latency, update frequency, or return behavior.

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 concise and well-structured, with the first sentence front-loading 'Global market overview' and enumerating covered asset classes, and the second sentence crediting Yahoo Finance. Every word adds value with no redundancy.

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

Completeness4/5

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

Given the tool's simplicity (zero parameters, no output schema, no annotations), the description adequately conveys the data scope and source. It could mention the return format, but for a broad snapshot tool with low complexity, the provided detail is largely sufficient.

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 input schema is empty. The baseline score of 4 applies because there are no parameter semantics to enhance; the description correctly does not attempt to explain nonexistent parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool's scope as a global market overview, listing specific indices, cryptos, FX rates, and ETFs. However, it lacks an explicit verb such as 'fetches' or 'lists', and does not differentiate itself from the similarly named sibling tool egx_market_overview.

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 phrase 'Global market overview' implies usage for obtaining a broad market snapshot, but there is no explicit guidance on when to choose this tool over alternatives like market_sentiment or egx_market_overview. No exclusions or alternative suggestions are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

multi_agent_analysisA

Run a multi-agent debate (Technical, Sentiment, Risk) for a specific symbol.

Args: symbol: Symbol - crypto: "BTCUSDT"; stocks: "COMI" (EGX), "THYAO" (BIST) exchange: Exchange - crypto: KUCOIN, BINANCE; stocks: EGX, BIST, NASDAQ, NYSE timeframe: Time interval (5m, 15m, 1h, 4h, 1D, 1W)

Returns: A structured debate between 3 AI agents culminating in a final trading decision.

ParametersJSON Schema
NameRequiredDescriptionDefault
symbolYes
exchangeNoKUCOIN
timeframeNo15m

TDQS

A4.1/5.0
Behavior3/5

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

No annotations are provided, so the description must carry the burden. It does disclose the output ('A structured debate between 3 AI agents culminating in a final trading decision'), which is helpful. However, it does not state whether the tool is read-only, whether it makes external calls, or any latency/cost implications. This is typical for analysis tools but still a gap without annotations.

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 a compact docstring with 'Args' and 'Returns' sections. Every line provides useful information, no fluff. It is front-loaded with the core purpose and then details parameters.

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

Completeness4/5

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

Given the tool's moderate complexity (3 arguments, no output schema), the description sufficiently explains inputs and the high-level return value. It could mention more about the structure of the debate or the final decision format, but the provided information is adequate for an agent to understand what to expect and when to use it.

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 input schema has 0% description coverage, but the description compensates fully by explaining each parameter with specific examples: symbol includes 'BTCUSDT' and 'COMI', exchange lists KUCOIN/BINANCE and stock exchanges, timeframe lists intervals like '15m'. This adds meaning beyond the raw schema and helps the agent construct valid arguments.

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: 'Run a multi-agent debate (Technical, Sentiment, Risk) for a specific symbol.' This is a specific verb with a distinct resource (multi-agent debate) and scope (symbol). It differentiates from sibling analysis tools by naming the three agent perspectives.

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 provides practical examples of accepted symbol and exchange values, implying when to use the tool (e.g., for a known symbol). However, it does not explicitly mention alternatives or when not to use it, such as saying 'use combined_analysis for a single-perspective view'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

multi_timeframe_analysisA

Multi-timeframe alignment analysis (Weekly -> Daily -> 4H -> 1H -> 15m).

Analyzes a symbol across all key timeframes to find confluence and optimal entry timing. Best trades happen when Weekly, Daily, and lower timeframes all align in the same direction.

Args: symbol: Symbol - crypto: "BTCUSDT"; stocks: "COMI" (EGX), "THYAO" (BIST) exchange: Exchange - crypto: KUCOIN, BINANCE; stocks: EGX, BIST, NASDAQ, NYSE

Returns: Multi-timeframe breakdown with alignment score and trading recommendation.

ParametersJSON Schema
NameRequiredDescriptionDefault
symbolYes
exchangeNoKUCOIN

TDQS

A4.3/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It details the analysis process and return value but does not explicitly state read-only behavior, data sources, or limitations. Some transparency is present, but gaps remain.

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 compact, front-loaded, and well-organized into summary, args, and returns. Every sentence contributes value without unnecessary detail, earning a top score.

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

Completeness4/5

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

Given the tool's complexity and absence of an output schema, the description adequately covers the input parameters, analytical scope, and return type. It does not elaborate on the alignment score calculation, but that is an implementation detail. Slightly more detail on output structure would make it complete.

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?

Schema description coverage is 0%, so the description's Args section is crucial. It explains symbol and exchange with concrete examples for both crypto and stock markets, enriching the bare schema and enabling correct parameter usage.

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 identifies the tool as 'Multi-timeframe alignment analysis' and explains it 'Analyzes a symbol across all key timeframes to find confluence and optimal entry timing.' This specific verb and resource distinguish it from sibling tools by focusing on timeframe alignment.

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?

The description provides clear context for when to use the tool: 'Best trades happen when Weekly, Daily, and lower timeframes all align in the same direction.' This implies the primary use case but does not explicitly name alternatives or exclusion cases, so it is slightly below a perfect score.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

rating_filterB

Filter coins by Bollinger Band rating.

Args: exchange: Exchange name like KUCOIN, BINANCE, BYBIT, etc. timeframe: One of 5m, 15m, 1h, 4h, 1D, 1W, 1M rating: BB rating (-3 to +3): -3=Strong Sell, -2=Sell, -1=Weak Sell, 1=Weak Buy, 2=Buy, 3=Strong Buy limit: Number of rows to return (max 50)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
ratingNo
exchangeNoKUCOIN
timeframeNo5m

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It mentions 'filter' but does not state whether this is a read-only operation, what the output contains, or any side effects or prerequisites. The rating scale in Args adds some context but does not cover the tool's behavioral traits.

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 a single concise purpose sentence followed by a well-structured Args block. Every line is informative and necessary, with no wasted words.

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?

The description covers the input parameters well and the output schema likely covers return values. However, it lacks contextual details like whether this is a live scan, how results are ordered, or when to use it instead of sibling tools. Given no annotations, more context would be needed for full completeness.

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?

Schema description coverage is 0%, and the description fully compensates by explaining each parameter: exchange with examples, timeframe with exact allowed values, rating with the full -3 to +3 scale and meanings, and limit with a max value. This adds significant value beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool filters coins by Bollinger Band rating, using a specific verb and resource. However, it does not explicitly differentiate itself from sibling tools like bollinger_scan, which may serve a similar purpose.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives. The description only states what it does, not when it should be preferred or how it relates to sibling scanning tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

smart_volume_scannerB

Smart volume + technical analysis combination scanner.

Args: exchange: Exchange name min_volume_ratio: Minimum volume multiplier (default 2.0) min_price_change: Minimum price change percentage (default 2.0) rsi_range: "oversold" (<30), "overbought" (>70), "neutral" (30-70), "any" limit: Number of results (max 30)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
exchangeNoKUCOIN
rsi_rangeNoany
min_price_changeNo
min_volume_ratioNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.2/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It reveals that the tool uses volume ratio, price change, and RSI ranges as filter criteria, but it does not describe the output format, whether it's read-only, or any side effects or limitations. The behavior of combining volume and technical analysis is only hinted at, not detailed.

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 concise and front-loaded with a clear purpose, followed by a structured parameter list. Each line is useful and the format is easy to scan. The parameter explanations are somewhat redundant with the schema's defaults but still add semantic value.

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

Completeness2/5

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

Despite having an output schema, the description is thin on context. It lacks insight into how the combination works, what 'smart' entails, when to choose this over other scanners, and what the actual output looks like (though the output schema may cover return format). The tool's sophistication warrants more explanation than a simple parameter list.

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 schema has zero description coverage, and the description fully compensates by explaining each parameter's meaning, default values, and for rsi_range, the possible values with their thresholds. This adds significant value beyond the schema fields, which are just names and types.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool is a 'Smart volume + technical analysis combination scanner', specifying its function as a scanner combining volume metrics with technical indicators. This is more specific than simply 'scanner', but it doesn't explicitly differentiate it from sibling scanners like volume_breakout_scanner, so it falls short of a 5.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives, nor any exclusions or prerequisites. It only lists parameters, leaving the user to infer when it might be appropriate; this is essentially no usage guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

top_gainersA

Return top gainers for an exchange and timeframe using bollinger band analysis.

Args: exchange: Exchange name - crypto: KUCOIN, BINANCE, BYBIT; stocks: EGX, BIST, NASDAQ, NYSE, BURSA, HKEX timeframe: One of 5m, 15m, 1h, 4h, 1D, 1W, 1M limit: Number of rows to return (max 50)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
exchangeNoKUCOIN
timeframeNo15m

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It reveals that the tool uses bollinger band analysis and imposes a max limit of 50, which adds value beyond the name. However, it does not explicitly state read-only behavior or data freshness, though 'return' implies a safe read operation.

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 concise: a single overview sentence followed by a clean, organized Args section. Every sentence serves a purpose, with no fluff, making it easy to scan and understand.

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 tool's simplicity (3 parameters, no required fields) and the presence of an output schema, the description covers purpose, parameters, and methodology sufficiently. It lacks only niche details like exact data source or update frequency, which are not critical for correct invocation.

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 schema provides no descriptions (0% coverage), but the description fully compensates by explaining each parameter in detail: exchange lists allowed crypto and stock exchanges, timeframe lists all allowed timeframes, and limit specifies max rows. This is excellent parameter documentation.

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: 'Return top gainers for an exchange and timeframe using bollinger band analysis.' It identifies a specific verb (Return), resource (top gainers), and method (bollinger band analysis), which also differentiates it from siblings like top_losers and bollinger_scan.

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?

The description provides clear context about what the tool does and the parameters (exchange, timeframe, limit), but it does not explicitly name alternatives or state when not to use it. The usage context is clear enough, but exclusions or alternative scenarios are not mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

top_losersB

Return top losers for an exchange and timeframe. Supports crypto (KUCOIN, BINANCE) and stocks (EGX, BIST, NASDAQ).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
exchangeNoKUCOIN
timeframeNo15m

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.2/5.0
Behavior2/5

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

With no annotations, the description must carry the burden of behavioral disclosure. It only mentions supported exchanges, but does not explain the meaning of 'top losers' (e.g., by percentage decline), the timeframe format, default behavior, or any other operational details. This is insufficient without annotations.

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 a single concise sentence that front-loads the core purpose. No wasted words or redundant details.

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?

For a simple data retrieval tool with an output schema and all-optional parameters, the description covers the essentials but leaves gaps in timeframe format and limit semantics, and lacks usage guidance. It is minimally viable but not comprehensive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has zero description coverage, so the description must compensate. It adds meaning for 'exchange' by naming allowed values, and for 'timeframe' by naming it, but it does not explain the timeframe format or the 'limit' parameter at all. This partial compensation earns a score below baseline.

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 that the tool returns top losers for an exchange and timeframe, using the specific verb 'Return' and the resource 'top losers'. It also lists supported exchanges, distinguishing it from sibling tools like top_gainers.

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

Usage Guidelines2/5

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

The description provides no explicit guidance on when to use this tool versus alternatives. It does not mention top_gainers or other similar tools, nor does it state any exclusions or preferred use cases.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

volume_breakout_scannerB

Detect coins with volume breakout + price breakout.

Args: exchange: Exchange name like KUCOIN, BINANCE, BYBIT, etc. timeframe: One of 5m, 15m, 1h, 4h, 1D, 1W, 1M volume_multiplier: How many times the volume should be above normal level (default 2.0) price_change_min: Minimum price change percentage (default 3.0) limit: Number of rows to return (max 50)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
exchangeNoKUCOIN
timeframeNo15m
price_change_minNo
volume_multiplierNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.2/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only restates the detection logic and parameter meanings, but does not disclose any side effects, limitations, error scenarios, or operational context (e.g., rate limits, data source, or output behavior). This is minimal transparency beyond the tool's name.

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 concise and front-loaded with a clear purpose sentence, followed by a well-organized argument list. Every sentence earns its place, and there is no redundant or filler content.

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?

The output schema exists, so return values need not be described. However, the description lacks usage context, examples, or edge-case handling, and does not address the absence of annotations. For a 5-parameter tool, the description is functional but not fully complete for an agent to invoke it confidently in all scenarios.

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 schema description coverage is 0%, so the description must compensate. The Args block provides meaningful explanations for all five parameters, such as 'How many times the volume should be above normal level' for volume_multiplier. This adds value beyond the bare schema titles and defaults, though some explanations are somewhat self-evident.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/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: 'Detect coins with volume breakout + price breakout.' This is a specific verb+resource combination that distinguishes it from generic tools, though it doesn't explicitly differentiate among sibling scanners like volume_confirmation_analysis or smart_volume_scanner.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It neither states prerequisites nor mentions exclusions, leaving the agent to infer usage solely from the parameter list. This is a significant gap given the number of sibling scanning tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

volume_confirmation_analysisC

Detailed volume confirmation analysis for a specific coin.

Args: symbol: Coin symbol (e.g., BTCUSDT) exchange: Exchange name timeframe: Time frame for analysis

ParametersJSON Schema
NameRequiredDescriptionDefault
symbolYes
exchangeNoKUCOIN
timeframeNo15m

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations, the description must disclose behavioral traits such as read-only nature, return format, or side effects. It only restates 'detailed volume confirmation analysis' and lists parameters, adding no transparency about what happens when the tool is invoked. The lack of any context about output or data sources is a significant gap.

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 brief and front-loaded with the purpose, followed by a compact args list. It avoids unnecessary fluff and is easy to scan. However, the args section is somewhat redundant with the schema and could be integrated more naturally, so it does not earn a perfect score.

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

Completeness2/5

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

Given no output schema, no annotations, and a tool with three parameters, the description is incomplete. It omits what the analysis returns, what inputs are valid (e.g., supported exchanges/timeframes), and how it differs from sibling tools. The context is insufficient for an agent to decide confidently when to invoke this tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must fully compensate. It provides only minimal explanations: symbol gets an example (BTCUSDT), but exchange and timeframe are merely restated by name with generic glosses ('Exchange name', 'Time frame for analysis'). No allowed values, formats, or additional semantics are given, despite defaults existing in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool performs 'Detailed volume confirmation analysis for a specific coin,' which clearly identifies the verb (analysis) and resource (volume confirmation for a coin). It is more specific than a tautology but does not explicitly distinguish itself from sibling volume-related tools like volume_breakout_scanner or smart_volume_scanner, lacking detail on what 'confirmation' entails.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives. There is no mention of scenarios, prerequisites, or comparison to the many sibling tools. The description only lists arguments, leaving the agent to infer usage from the name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

walk_forward_backtest_strategyA

Walk-forward backtest to detect overfitting — validates strategy on unseen data.

Splits historical data into n_splits folds. Each fold:

  • Train (70% by default): strategy runs in-sample

  • Test (30% by default): strategy runs on unseen forward data

Robustness score (out-of-sample / in-sample performance ratio):

= 0.8 → ROBUST — no overfitting, safe to consider for live trading = 0.5 → MODERATE — some degradation out-of-sample, use with caution = 0.2 → WEAK — significant degradation, likely curve-fitted < 0.2 → OVERFITTED — fails on unseen data, do not trade live

Args: symbol: Yahoo Finance symbol (AAPL, BTC-USD, SPY…) strategy: rsi | bollinger | macd | ema_cross | supertrend | donchian period: Historical data period: '1mo', '3mo', '6mo', '1y', '2y' (recommend '2y' for meaningful walk-forward splits) initial_capital: Starting capital per fold in USD (default: $10,000) commission_pct: Per-trade commission % (default: 0.1%) slippage_pct: Per-trade slippage % (default: 0.05%) n_splits: Number of walk-forward folds (default: 3, max: 10) train_ratio: Fraction of each fold used for training (default: 0.7) interval: Timeframe: '1d' (daily, default) or '1h' (hourly)

Returns: Per-fold train/test metrics, aggregate robustness score, verdict, and combined out-of-sample performance.

ParametersJSON Schema
NameRequiredDescriptionDefault
periodNo2y
symbolYes
intervalNo1d
n_splitsNo
strategyYes
train_ratioNo
slippage_pctNo
commission_pctNo
initial_capitalNo

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It thoroughly explains the fold splitting, train/test ratios, robustness score calculation, and the meaning of each score threshold (ROBUST, MODERATE, WEAK, OVERFITTED). It also describes the return value structure, giving the agent a clear mental model of the tool's operation.

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 well-structured with a clear summary, fold explanation, threshold list, and parameter breakdown. Despite its length, every section adds necessary information and the formatting (bullet points, bold thresholds) makes it easy to scan. No fluff or redundancy.

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 tool's complexity (9 params, no output schema, no annotations), the description is remarkably complete. It covers the algorithm, all parameter semantics, return values, and threshold interpretations. The agent has enough context to select and invoke the tool correctly without additional documentation.

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 schema description coverage is 0%, but the description's 'Args' section provides complete semantics for all 9 parameters, including allowed values for 'strategy' (e.g., 'rsi | bollinger | macd'), examples for 'symbol', defaults, and constraints (e.g., 'max: 10' for n_splits). This adds substantial meaning beyond the raw schema.

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 opens with a specific verb and resource: 'Walk-forward backtest to detect overfitting — validates strategy on unseen data.' This clearly states what the tool does and distinguishes it from siblings like 'backtest_strategy' and 'compare_strategies' by emphasizing walk-forward methodology and overfitting detection.

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?

The description clearly implies when to use this tool: to detect overfitting and validate on unseen data. It also provides concrete guidance, such as recommending '2y' period for meaningful splits. However, it does not explicitly list when not to use it or name alternative tools, so it falls short of the highest standard.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

yahoo_priceA

Real-time price quote from Yahoo Finance for any stock, crypto, ETF or index.

Args: symbol: Yahoo Finance symbol. Examples: Stocks: AAPL, TSLA, MSFT, NVDA, GOOGL Crypto: BTC-USD, ETH-USD, SOL-USD ETFs: SPY, QQQ, GLD Indices: ^GSPC (S&P500), ^DJI (Dow Jones), ^IXIC (NASDAQ) FX: EURUSD=X, GBPUSD=X Turkish: THYAO.IS, SASA.IS

ParametersJSON Schema
NameRequiredDescriptionDefault
symbolYes

TDQS

A4.3/5.0
Behavior3/5

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

With no annotations, the description must convey safety and behavior. It states 'real-time price quote,' implying a read-only fetch, which covers the basic safety profile. However, it doesn't disclose potential limitations such as delayed data, symbol validation errors, or whether additional fields (bid/ask, volume) are returned.

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 one-sentence summary front-loads the purpose, followed by a well-organized list of symbol examples. Every line adds value, and the structure is easy to scan.

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

Completeness4/5

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

For a single-parameter price quote tool with no output schema, the description covers the essential usage: which symbols are accepted and what the tool returns (a real-time price). It lacks explicit detail on output format or error behavior, but given the simplicity, it is nearly complete.

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 input schema only provides 'symbol' with no description. The description compensates with a detailed 'Args:' section containing symbol formats and examples for stocks, crypto, ETFs, indices, FX, and Turkish securities, providing essential semantics beyond the schema.

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 opens with 'Real-time price quote from Yahoo Finance for any stock, crypto, ETF or index,' clearly stating the verb (get price quote), resource (Yahoo Finance), and scope. This distinguishes it from sibling tools like scanners and analysis tools.

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?

The description gives extensive examples of valid symbols across asset classes, establishing clear context for when to use this tool (whenever a single real-time price is needed). It does not explicitly name alternative tools or exclusions, but the asset-class coverage implicitly defines its scope.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

B3.3/5.0
Disambiguation2/5

Several tools have overlapping purposes, such as egx_sector_scan vs egx_sector_scanner, volume_breakout_scanner vs smart_volume_scanner, and bollinger_scan vs rating_filter. This overlap makes it hard for an agent to select the correct tool, risking misselection.

Naming Consistency3/5

Tool names are consistently snake_case, but conventions vary: some use an egx_ prefix while others do not (e.g., top_gainers, coin_analysis). The pair egx_sector_scan and egx_sector_scanner are confusingly similar, and the mix of generic and descriptive names reduces predictability.

Tool Count3/5

27 tools is on the heavy side, but the broad scope (market scanning, detailed analysis, sentiment, news, backtesting) justifies a larger surface. However, several tools are redundant, inflating the count beyond what is necessary.

Completeness4/5

The tool set covers a wide range of trading workflows: market overviews, sector scans, symbol-specific analysis, sentiment/news, and backtesting. Missing features like historical price data retrieval or portfolio management are minor gaps that agents can work around.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    B
    maintenance
    AI-powered trading toolkit with backtesting, live sentiment, Yahoo Finance data, and 30+ technical analysis tools, integrated as an MCP server for Claude and other AI clients.
    37
    4,309
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    The most complete AI-powered trading toolkit for Claude and MCP clients, offering backtesting, live sentiment, Yahoo Finance, and 30+ technical analysis tools in one MCP server.
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    A comprehensive MCP server that integrates TradingView Desktop automation, screener API, Yahoo Finance, IDX/BEI tools, backtesting, news sentiment, trade math, and market sessions. It enables traders to perform technical analysis, backtest strategies, manage positions, and automate TradingView tasks through natural language.
  • A
    license
    Not graded
    quality
    A
    maintenance
    Provides AI-powered trading analytics and coaching by analyzing historical trades to identify strategies, emotional patterns, and behavioral mistakes via MCP tools.
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/lightkeeper90/ultimate-tradingview-agent'

If you have feedback or need assistance with the MCP directory API, please join our Discord server