FullMt5McpByLeo
Universal MCP server that enables AI assistants to control MetaTrader 5 directly, executing trades, managing data, and automating MT5 operations through natural language.
README
<!-- mcp-name: io.github.TradeSystemsNique/mt5-mcp-by-leo --> <p align="center"> <img src="https://img.shields.io/badge/Language-C++-3776ab?style=flat-square"/> <img src="https://img.shields.io/badge/MQL5-Backend-13C7DE?style=flat-square"/> <img src="https://img.shields.io/badge/Protocol-MCP-1B6CA8?style=flat-square"/> <img src="https://img.shields.io/badge/Platform-MetaTrader%205-0D1B2A?style=flat-square"/> <img src="https://img.shields.io/badge/Author-Niquel%20Mendoza-C9D6DF?style=flat-square"/> <a href="./LICENSE"> <img src="https://img.shields.io/badge/License-Nique%26Leo%20NL--ND-red.svg"/> </a> </p>
<p align="center"> <strong>Universal MCP Server for MetaTrader 5 Trading & Data Operations</strong> </p>
Overview
FullMt5McpByLeo is a complete, production-ready MCP server that enables Claude and other AI assistants to control MetaTrader 5 directly. Execute trades, retrieve market data, manage charts, analyze trading history, and automate MT5 operations through natural language.
Main Features (General)
- Fast execution; the MCP server is written in C++ using simdjson and MQL5 uses JsonParserByLeo (fast MQL5 JsonParser), ultra-optimized code for maximum speed. The average response time is around 10ms (from when Claude calls a function until its response; note that this may depend on the size of the request... on average it's 10ms).
- Unlike other MCPs for MT5, this MCP has two parts, one in MQL5 and the other in C++, giving access to the full MQL5 API and not limited to the mt5 package for Python, which lacks functions for handling charts, etc.
Main Features (MCP Functions)
Trade Operations
Execute and manage trading positions and orders:
- Open Positions: Execute market trades (buy/sell) with immediate or pending orders
- Position Management: Modify stops/profits, close positions (full or partial)
- Order Management: Create, modify, and cancel pending limit/stop orders
- Trading History: Query completed deals with profit/loss analysis
Market Data & Symbols
Access real-time and historical data:
- OHLC Data: Retrieve candlestick data (open, high, low, close, volume, spread, etc..)
- Tick data: Retrieve Tick data (last, ask, bid, flags, etc..)
- Symbol Information: Get symbol properties (digits, spreads, swaps, volumes, etc.. full SYMBOL_INFO_*)
- Market Watch: Manage symbol selection and availability
Indicators
- Indicator Manager: Get parameters, Add indicadors (ALL, Custom, MA, ETC..), Remove, Get Buffers, etc..
Graphic Objects
Create and modify chart visualizations:
- Draw Objects: Create trend lines, rectangles, text labels, arrows
- Object Properties: Modify colors, styles, prices, text, full ENUM_OBJECT_PROPERTY_*
- Chart Annotations: Add visual markers and indicators to charts
Chart Management
Control chart windows and redraw operations:
- Chart Operations: Open, close, list active charts
- Chart Properties: Read chart dimensions, colors, price ranges
- Visual Updates: Force chart redraw for real-time updates
- Indicators: Add\Delete\GetName\GetTotal of indicator of any chart\subwin
- Navigate: Navigate chart
Code & Terminal
Compile and execute Expert Advisors:
- Compilation: Compile MQL5 source to EX5 bytecode
- Backtesting and Optimization: Run historical tests with multiple tick modeling\leverage\opt criterian\opt mode\forward\visual mode.. etc and get full report, deals, balance\equity curve.
- EA Execution: Run Expert Advisors in real-time
- Logging: Retrieve EA logs for debugging and monitoring
- Terminal and Account: Obtaing terminal and acount info_* (integer, string, double)
Note: Python version package mt5_mcp_by_leo is deprecated. now replace by C++ exe server. Note: Unlike other MCPs that use .ini files to launch backtests, this MCP doesn't need that because it controls the entire MT5 tester from the same EA, without .ini files, without wasted terminals. In addition, the code compilation is more complete since its AI can choose whether or not to optimize the code, instructions, etc.
Repository Structure
FullMt5McpByLeo/
├── Src/ # MQL5 Backend Functions
│ ....
├── mt5_mcp_by_leo/ # Json tools definition
│ ....
⚠️ License Activation (Required)
Your MCP server won't work without an active license from TheBotPlace.
- Purchase McpServerByLeo here: https://www.thebotplace.com/bot/mcpserverbyleo
- Get your TBP ID from your TheBotPlace account - Your user ID
- Add it to the
argsarray in yourclaude_desktop_config.jsonor the JSON that your AI platform uses (see Quick Start/step 4 below)
Requirements (pre-instalation)
- General (for all)
- EXE from releases (McpServer.exe)
- For repo code (devs)
- Check: dependencies.json
- For user use:
- EX5 of releases (Runner an Mt5Mcp).
Installation of repo code
cd "C:\Users\YOUR USER\AppData\Roaming\MetaQuotes\Terminal\YOUR ID\MQL5\Shared Projects"
tsndep install "https://forge.mql5.io/nique_372/FullMt5McpByLeo.git"
- For use tsndep command requerid tsndep pacakage (avaible in pypi).. This command automatically downloads all dependencies and installs all requirements from the repositories.
- If any part of the system is private, then it will fail... contact me so I can give you access (if it's a product, you can buy it; if you have any questions, don't hesitate to contact me).
Quick Start (for final users)
1. Download
Download the latest .exe and .ex5 files from the repo releases. Place the .ex5 files in the MT5 terminal's Experts\ folder, and the .exe file in an easily accessible folder (for example, the MT5 terminal's Common\Files\ folder).
2. Download tools.json
Download the tools.json file and place it in your terminal's Common\Files\ folder.
3. Create a config json
Open Common\Files And create a json file with this structure:
{
"general": {
"type_reg": "stdio_stdin",
"json_tools_fpath": "JSON_TOOL_PATH"
},
"mt5_conn": {
"host": "127.0.0.1",
"port": 9999
},
"http_lib": {
"name": "McpMt5Server",
"version": "1.0.0",
"host": "127.0.0.1",
"port": 8080,
"endpoint": "/"
},
"stdio_stdin": {
"name": "MT5 MCP Server",
"version": "1.0.0"
}
}
Full template in Templates/config.json
- JSON_TOOL_PATH: Path to the tools configuration json (you can download the json from the mt5_mcp_by_leo folder and place it in documents for example and put the path to said file here...) Or if you have the repository cloned, you can use the path to tools.json
4. Configure in Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"mt5_mcp_by_leo": {
"command": "PATH_TO_EXE",
"args": ["PATH_TO_FILE", "YOUR_TBP_ID", "YOUR_MT5_ACCOUNT_LOGIN_ID"
]
}
}
}
Full template in Templates/claude_desktop_config.json
- PATH_TO_EXE: Path to exe McpServer.exe file
- PATH_TO_FILE: Path to json config file
- YOUR_TBP_ID: Your The Bot Place user ID
- YOUR_MT5_ACCOUNT_LOGIN_ID: ACCOUNT_LOGGIN of your mt5 account where Mt5Mcp EA is running
5. Configure MetaTrader 5
In MT5: Tools → Options → Allowed URLs for WebRequest
- Add
127.0.0.1or host you configured. - Click Accept
- Enable AutoTrading and DLL imports
6. Open claude desktop
Open Claude Desktop. At that moment, a CMcpServer.exe is running in the background until it establishes a connection with the EA Mt5Mcp.ex5.
7. Attach EA in MT5
1. Run Runner.ex5 in any chart.. (dowland from releases)
2. Drag Mt5Mcp.ex5 onto your chart (any) and cofigure it, The parameters of the EA, such as port/host, must match the JSON of Claude Desktop
8. Use in Claude
Open a 0.01 lot BUY on EURUSD with SL at 1.0800 and TP at 1.0900
Note:
You can also use HTTP Remote (McpServer.exe support HTTP with libs httplib + mcp-remote npm package) (see: https://forge.mql5.io/nique_372/McpServer/wiki/Running-HTTP)
License
By downloading or using this repository, you accept the license terms.
Documentation
- Wiki: https://forge.mql5.io/nique_372/FullMt5McpByLeo/wiki
- Testing MCP (Full testing in YT videos):
- https://www.youtube.com/watch?v=kco7aCOs-bM
- https://www.youtube.com/watch?v=xCscKpoCi3Y
Contact
- Platform: MQL5 Community
- Profile: https://www.mql5.com/es/users/nique_372/news
<p align="center">Copyright © 2026 Niquel Mendoza (nique_372).<br/> TSN Trading Systems ecosystem.</p>
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。