Skip to main content
Glama

AlgoVault — Crypto Quant Trade Calls

chat_knowledge

Read-only

Returns a synthesized natural-language answer with citations, grounded in the AlgoVault knowledge bundle (every MCP tool description, response shape, integration tutorial, and code example). Use when you need an explanation, code pattern, or how-to; for raw ranked snippets without LLM synthesis use search_knowledge (faster, no quota cost). Read-only: calls an LLM, no other side effects. Quota: Free 10/month, Starter 50, Pro 200, Enterprise 2000.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modelNoOptional model override (default claude-haiku-4-5-20251001).
questionYesNatural-language question (5-500 chars).

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Added

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false; description adds that it 'calls an LLM, no other side effects' and provides quota details. This goes beyond structured annotations by clarifying runtime behavior and consumption costs. No contradiction.

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?

Three sentences, each with a distinct purpose: output definition, usage guidance with alternative, and side-effect/quota disclosure. No unnecessary words.

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

Completeness5/5

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

With two parameters, no output schema, and strong annotations, the description covers purpose, usage, side effects, and quota. It tells the agent exactly when to use it, what it returns, and that it's read-only – sufficient for invocation decisions.

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

Parameters3/5

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

Input schema has 100% description coverage, with 'question' and 'model' fully described. The tool description adds no parameter-specific information beyond the schema, so baseline 3 applies.

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

Purpose5/5

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

Description states it 'Returns a synthesized natural-language answer with citations, grounded in the AlgoVault knowledge bundle' – a specific verb, resource, and output. It distinguishes from sibling search_knowledge by noting LLM synthesis, and from other siblings by focusing on knowledge Q&A.

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

Usage Guidelines5/5

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

Explicitly says 'Use when you need an explanation, code pattern, or how-to' and contrasts with search_knowledge: 'for raw ranked snippets without LLM synthesis use search_knowledge (faster, no quota cost)'. This provides clear when-to-use and an explicit alternative.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation4/5

Most tools have clearly distinct scopes: single-asset calls, market scans, regime, funding arb, track record, and knowledge retrieval. However, get_trade_signal is an explicit duplicate of get_trade_call, which creates minor selection ambiguity despite the alias note.

Naming Consistency5/5

All tool names follow a consistent lowercase snake_case verb_noun pattern: get_* for single data points, scan_* for market-wide scans, and chat_knowledge/search_knowledge for documentation. The naming is predictable and uniform.

Tool Count4/5

Eight tools is a well-sized surface for this domain, but one slot is occupied by a redundant backward-compatibility alias. Removing get_trade_signal would make the count feel even tighter.

Completeness5/5

The tool set covers the full read-only workflow: single trade calls, whole-market scans, market regime, funding arbitrage, verified track record, and knowledge/help. There are no obvious dead ends or missing operations for the server's stated purpose.