Skip to main content
Glama

Server Details

Dollar-cost-averaging backtests on real historical data for crypto, stocks and commodities.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clear, distinct purpose: explaining the method, listing assets, and running backtests. No functional overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (get_method, list_assets, run_dca_backtest) with snake_case, making them predictable.

Tool Count5/5

Three tools cover the essential needs for a DCA toolset: method description, asset discovery, and backtesting. The count is well-scoped without being too sparse or excessive.

Completeness4/5

The set covers core DCA operations, but lacks features like comparing multiple assets or customizing backtest parameters, which could be useful. Still, no critical gaps for basic usage.

Available Tools

3 tools
get_methodGet the DCA Method summary and key linksAInspect

Returns a concise explanation of the dollar-cost-averaging method plus links to the methodology, calculators and blog.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

The description clearly indicates a read-only operation ('returns'), which is sufficient given no annotations. It does not contradict any annotation (none provided). The behavior is fully disclosed: it returns an explanation and links.

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?

Single sentence front-loads the main purpose ('returns a concise explanation of...') and adds secondary info ('plus links to...'). No extraneous words; every part is valuable.

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?

For a tool with no parameters, no output schema, and only two siblings, the description is complete. It tells the agent exactly what the tool provides (explanation and links) and implies it is for informational purposes.

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?

There are zero parameters, and schema description coverage is 100% (empty schema). Per guidelines, baseline is 4. The description adds no parameter info because none exist.

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 'returns a concise explanation of the dollar-cost-averaging method plus links', specifying both the resource (DCA method) and action (returns explanation and links). It distinguishes from siblings: list_assets lists assets, run_dca_backtest runs backtests.

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?

No explicit guidance on when or when not to use this tool versus alternatives. Usage is implied by the description and sibling tool names, but there is no direct statement like 'Use this to get an overview; for backtesting use run_dca_backtest instead.'

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

list_assetsList assets supported by the DCA calculatorsAInspect

Returns every asset dcamethod.com can backtest, with category, calculator URL and whether historical data is available. Optional category filter: crypto, stocks, commodities.

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryNoOptional category filter
Behavior3/5

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

No annotations are provided, and the description does not disclose behavioral traits such as read-only nature, rate limits, or side effects. It is a simple read operation, but the description lacks explicit transparency beyond the immediate action.

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?

Two sentences with no wasted words. The first sentence front-loads the purpose and returned fields. Highly efficient.

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?

Without an output schema, the description adequately lists what is returned (category, calculator URL, historical data flag). However, it does not mention pagination, ordering, or potential limits, making it slightly incomplete for a thorough understanding.

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?

Schema coverage is 100% with one optional enum parameter. The description adds context by naming the filter options, but the schema already enumerates 'crypto', 'stocks', 'commodities', so the added value is marginal.

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 returns every asset with specific fields (category, calculator URL, historical data availability). It distinguishes from siblings like 'get_method' and 'run_dca_backtest' which 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 Guidelines3/5

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

The description mentions an optional category filter and implies usage for listing assets, but does not explicitly state when to use this tool versus alternatives or provide exclusions.

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

run_dca_backtestRun a real DCA backtest on historical dataAInspect

Simulates dollar-cost averaging into one asset using dcamethod.com's own engine and historical price data. Returns total invested, final value, profit, CAGR, average buy price, best/worst month and purchase count. Dates outside the available range are clamped to it.

ParametersJSON Schema
NameRequiredDescriptionDefault
amountYesUSD invested per purchase, e.g. 100
symbolYesAsset symbol or name, e.g. 'BTC', 'AAPL', 'gold'
end_dateNoOptional ISO date (YYYY-MM-DD); defaults to latest available
frequencyYesPurchase schedule
start_dateNoOptional ISO date (YYYY-MM-DD); defaults to earliest available
Behavior3/5

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

No annotations provided, so the description must disclose behavior. It mentions date clamping and lists return values, but does not state whether the operation is read-only (simulation is non-destructive) or any required permissions. While it covers core behavior, it lacks some safety 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?

Two sentences front-load the purpose and return values, with no redundant information. Every sentence adds value, and the structure is efficient.

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 5 parameters (3 required), no output schema, and no annotations, the description covers the essential purpose, return values, and date clamping edge case. It is nearly complete for a simulation tool, missing only error handling or validation details.

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?

Schema coverage is 100%, so the baseline is 3. The description does not add additional parameter-level details beyond what the schema already provides. It lists return values but no parameter meaning enrichment.

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 simulates dollar-cost averaging using a specific engine and historical data. It distinguishes itself from siblings like get_method and list_assets, which are about retrieving method info and asset lists, not simulation.

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 explains what the tool does and returns, and mentions date clamping. However, it does not explicitly state when to use vs. alternatives or provide exclusions. Siblings are sufficiently different to imply usage, leaving minimal ambiguity.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    D
    maintenance
    Enables AI assistants to backtest trading strategies described in plain English, providing access to market data, technical indicators, and comprehensive performance reports.
    Last updated
    1
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Local-first backtesting engine with built-in overfitting detection (PBO, deflated Sharpe, bootstrap CI, walk-forward) and a native MCP server for AI agents to validate trading strategies.
    Last updated
    3
    Apache 2.0
  • A
    license
    A
    quality
    A
    maintenance
    Investment decision tools for AI agents: portfolio status, isolated multi-agent committee analysis, auditable verdict history, and lookahead-protected backtests. Advisory only, no auto-trading; negative research results published.
    Last updated
    18
    75
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources