Skip to main content
Glama

Server Quality Checklist

58%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.0

  • Disambiguation2/5

    backtest_strategy overlaps heavily with both preview_backtest and run_backtest, since it can either preview or run a strategy depending on confirm. This makes it unclear when an agent should use backtest_strategy versus the more specific preview/run tools.

    Naming Consistency5/5

    All five tool names follow a consistent snake_case verb_noun pattern: backtest_strategy, preview_backtest, run_backtest, get_results, close_browser. This is predictable and easy to scan.

    Tool Count5/5

    Five tools is well-scoped for a browser-automation backtesting workflow. Each tool maps to a meaningful step in the process without unnecessary bloat.

    Completeness4/5

    The set covers the core workflow: preview, run, retrieve results, and clean up. Minor gaps exist, such as no explicit cancel or historical results retrieval, but agents can likely complete the main backtest lifecycle.

  • Average 3.8/5 across 5 of 5 tools scored. Lowest: 3.2/5.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 3 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.

    If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.

    MCP servers without a LICENSE cannot be installed.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior3/5

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

    With no annotations, the description carries the disclosure burden and does add useful behavioral context: it consumes a quota, demands confirm=true, and must not be used for live trading. Yet it omits other effects such as whether the operation is destructive, how long it runs, or what happens if confirm is false.

    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 two tightly written sentences with no filler. The most critical information — the confirm requirement and quota consumption — appears first, and the live-trading warning is a clear, extra safety boundary.

    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?

    For an 11-parameter tool with no output schema and no annotations, this description is too thin. It covers the invocation guardrail but omits practical details like date format expectations, parameter relationships, what results are returned, and how this differs from preview_backtest.

    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 compensate, but it only addresses the confirm parameter. It gives no meaning for startDate, endDate, lots, expiry, target, stopLoss, entryTime, exitTime, or underlying, leaving the agent to infer everything from raw schema 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 identifies a specific verb ('Configure and run'), a distinct resource ('AlgoTest Backtester'), and notes it is not for live trading. However, it does not differentiate from sibling tools like backtest_strategy or preview_backtest, so it is clear but not fully distinctive.

    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?

    It gives an explicit prerequisite ('Requires confirm=true') and a rationale ('consumes a backtest quota'), plus an exclusion ('Never use for live trading'). It does not say when to prefer this tool over preview_backtest or backtest_strategy, leaving relative usage context implicit.

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

  • Behavior3/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 usefully discloses that the tool does not start a backtest and operates in the 'local browser profile.' Yet it does not explain side effects, persistence, browser session state, or whether existing configuration is overwritten.

    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 the primary action. Every clause adds context, and 'Use this first' is a useful directive. However, for a tool with this many parameters, the brevity edges toward underspecification.

    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?

    The tool has 10 parameters, no annotations, no output schema, and sibling tools for execution and results. The description covers only the highest-level purpose and ordering; it lacks parameter guidance, side-effect detail, and a clear relationship to the other backtest tools.

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

    Parameters1/5

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

    The input schema has 10 parameters with 0% description coverage, and the description names none of them. Without any explanation of startDate, endDate, stopLoss, target, or the enum fields, an agent has no semantic guidance 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 uses a specific verb and resource: 'Configure AlgoTest Backtester in the local browser profile.' It also differentiates from the sibling run_backtest by explicitly stating it does so 'without starting a backtest,' and 'Use this first' establishes its role as a precursor in the workflow.

    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?

    'Use this first' gives an explicit when-to-use instruction and implies this precedes backtest execution. However, it does not name sibling alternatives like backtest_strategy or run_backtest, nor does it state when this tool should NOT be used.

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

  • Behavior4/5

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

    With no annotations provided, the description carries the full behavioral burden. It explicitly discloses that the tool never performs live trading and explains the preview-versus-run conditional based on confirm. This adds meaningful safety and control information, though it does not cover side effects like result persistence or browser interaction hinted at by close_browser.

    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 filler. The main action and conditional behavior are front-loaded, and the critical safety note ('Never performs live trading') is isolated at the end. Every word earns its place.

    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 core invoke condition and safety, but with no output schema it omits what a 'preview' looks like, whether results are returned directly or need to be fetched via get_results, and how this tool relates to the sibling run/preview tools. An agent can call it correctly but may not know the follow-up steps.

    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: 'request' is identified as a natural-language strategy, and 'confirm' is explained as the switch that triggers a run rather than a preview. For two simple parameters this is adequate, though a format example for request would strengthen it further.

    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 clear action: accept a natural-language strategy request, configure the backtester, and conditionally return a preview or run it. The verb and resource are specific. However, it does not explicitly differentiate from the sibling preview_backtest and run_backtest tools, which appear to offer the same behaviors separately.

    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 implies usage for natural-language strategy requests but gives no guidance on when to use this combined tool versus calling preview_backtest or run_backtest directly. It does not mention alternatives or exclusion conditions, leaving the agent to guess the correct routing among siblings.

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

  • Behavior4/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 clearly discloses the primary action ('close the local automation browser') and an important non-destructive detail ('preserving the persistent login profile'), which tells an agent that credentials/session state survive the close. It does not mention secondary effects such as open tabs or reconnection behavior, but for a zero-parameter close operation, this is 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 a single concise sentence with no filler. The core action is front-loaded, and the key preservation guarantee is included without unnecessary elaboration.

    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 parameterless tool with no output schema and straightforward behavior, the description is fully complete. It states both what happens (close) and what is preserved (login profile), which is everything an agent needs to invoke it correctly and understand its impact.

    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 input schema has zero parameters, so the baseline is 4. There are no parameter details to add, and the description appropriately focuses on behavior rather than parameters.

    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 ('Close') with a clear resource ('the local automation browser') and adds a meaningful qualifier ('while preserving the persistent login profile'). It unambiguously identifies a browser-lifecycle action and is clearly distinct from the backtest-focused sibling tools.

    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 makes the tool's purpose obvious, but it does not explicitly state when it should be called or contrast it with alternatives. Usage timing is implied rather than stated, which fits a simple utility but lacks explicit when-to-use guidance.

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

  • 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 of disclosing behavior. It clearly states the tool reads visible metrics and does not start a new run, signaling a non-destructive read operation. It does not describe error scenarios or preconditions (e.g., what happens if no results are visible), which is a minor gap given the simplicity of the 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 a single concise sentence that front-loads the core action ('Read the currently visible AlgoTest Backtest result metrics') and includes a relevant constraint ('without starting a new run'). Every word earns its place, with no redundancy or fluff.

    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 (no parameters, no output schema), the description is complete for an agent to invoke it correctly. It states what the tool reads and explicitly denies side effects, which is all that is needed for correct usage. There are no missing fields or behaviors that would prevent an agent from using it appropriately.

    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 schema coverage is 100% (empty schema). According to the rubric, a baseline of 4 is appropriate when there are no parameters, as there is nothing to add. The description correctly does not mention parameters, and the schema fully defines the input expectations.

    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 states a specific verb 'Read', a resource 'currently visible AlgoTest Backtest result metrics', and adds the scope 'without starting a new run', which clearly distinguishes it from siblings like run_backtest and preview_backtest. An agent can readily infer what this tool does and how it differs from the others.

    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 explicitly notes that it does not start a new run, implying it is for reading existing results, which is a clear usage constraint. However, it does not explicitly mention when to use it versus alternatives (e.g., after a backtest has been run or previewed), nor does it state prerequisites (e.g., that a run must have already occurred). The context is clear enough for basic usage, but lacks explicit alternative routing.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

algotest-backtester-mcp MCP server

Copy to your README.md:

Score Badge

algotest-backtester-mcp MCP server

Copy to your README.md:

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/makwanaalpesh811-a11y/algotest-backtester-mcp'

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