Skip to main content
Glama
Erfangit23

MT5 MCP Server

by Erfangit23

get_terminal_info

Retrieve MetaTrader 5 terminal status to verify broker connection, algo trading permission, and MT5 build.

Instructions

Terminal state: connected to broker, algo trading allowed, MT5 build.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/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 behavioral burden. It discloses the components of terminal state, which tells the agent what kind of read this is, but it does not explicitly state that the operation is read-only, side-effect free, or unauthenticated.

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 compact clause with zero filler, front-loading the resource ('Terminal state') and listing only the key state dimensions. Nothing is wasted.

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 no-parameter read tool with no output schema, the description identifies the main return fields an agent needs. It could be slightly stronger by explicitly noting the read-only nature and confirming that these are the complete return values.

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, so there are no parameter semantics to document. A baseline of 4 is appropriate because the schema and description correctly indicate no input is needed.

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 resource and the three pieces of terminal state returned: broker connection, algo-trading permission, and MT5 build. This is clear but not a full verb+resource statement and does not explicitly distinguish it from sibling get_account_info.

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?

It provides no when-to-use guidance, no prerequisites, and no alternatives. The tool name implies a read of terminal status, but the description itself does not help an agent choose between this and other getters.

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