MetaTrader5 MCP Server
Enables access to MetaTrader5 market data and trading functionality, including real-time quotes, historical OHLCV data, tick data, symbol information, and technical indicators for forex and other trading instruments.
README
MetaTrader5 MCP Server
A Model Context Protocol (MCP) server that provides access to MetaTrader5 market data and trading functionality.
Features
- Connect to MetaTrader5 terminal
- Retrieve symbol information and market data
- Get historical rates (OHLCV) for any timeframe
- Access tick data and market depth (DOM)
- Real-time market data streaming
- Support for all major trading instruments
Installation
- Install MetaTrader5 terminal
- Install Python dependencies:
pip install -r requirements.txt
Configuration
Copy .env.example to .env and configure your MetaTrader5 credentials:
cp .env.example .env
Edit the .env file with your broker credentials (optional - you can also connect without pre-configured credentials).
Usage
Starting the MCP Server
python server.py
Available Tools
Market Data
get_symbols(search_term, limit)- Smart search for trading symbols (CSV output)get_symbol_groups(search_term, limit)- Get available symbol groups (CSV output)get_symbol_info(symbol)- Get detailed symbol informationget_rates(symbol, timeframe, candles, start_datetime, end_datetime, ohlcv, ti)- Get historical OHLCV data in CSV formatget_ticks(symbol, count, start_datetime)- Get tick data in CSV formatget_market_depth(symbol)- Get market depth (DOM)get_indicators()- List indicators (CSV: name,category)-
- Indicator params + full help (JSON)
Example Usage
The server automatically connects to MetaTrader5 when any tool is called. Connection credentials can be configured via environment variables or the server will use the terminal's current login.
# Get all available symbol groups from MT5
groups = get_symbol_groups()
# Get all visible symbols (no search term)
all_symbols = get_symbols()
# Smart search: Find symbols containing "EUR" (EURUSD, JPYEUR, etc.)
eur_symbols = get_symbols(search_term="EUR", limit=20)
# Search by group: Find all major forex pairs
majors = get_symbols(search_term="Majors", limit=10)
# Limit number of results
eur_top5 = get_symbols(search_term="EUR", limit=5)
# Get symbol information
info = get_symbol_info("GBPUSD")
# Get EUR/USD hourly data
rates = get_rates("EURUSD", "H1", 100)
# Get tick data
ticks = get_ticks("EURUSD", 50)
Intelligent Symbol Search
The get_symbols function uses a smart 3-tier search strategy:
Search order:
- Group name match (e.g.,
Majors,Forex) - Symbol name match (e.g.,
EUR→ EURUSD, JPYEUR, ...) - Description match (symbol or group path)
Parameters:
search_term: Optional search term. If omitted, lists visible symbols.limit: Optional maximum number of symbols to return.
Response format:
- CSV with header
name,group,descriptionand one row per symbol.
Date Inputs
Flexible date/time parsing powered by dateparser:
- Accepts natural language (e.g.,
yesterday 14:00,2 days ago) - Accepts common formats (e.g.,
2025-08-29,2025/08/29 14:30,2025-08-29 14:30 UTC) - Times are interpreted and converted to UTC internally
Usage patterns for get_rates:
- Only
start_datetime: returns bars forward from the start (up tocandles). - Only
end_datetime: returns the lastcandlesbars before the end. - Both
start_datetimeandend_datetime: returns bars within the range (ignorescandles).
Quote Data Format
Historical rates and tick data are returned in compact CSV format with intelligent column filtering:
Historical Rates (get_rates)
By default returns: time,close (using ohlcv=["C"]).
Selecting OHLCV subset:
- Use
ohlcvas a list of letters from{O,H,L,C,V}; time is always included (Vmaps totick_volume). - CLI examples:
--ohlcv O C→ time,open,close;--ohlcv V→ time,tick_volume
Technical indicators via ti:
- Pass a comma-separated list like:
ti=sma(14),rsi(14),ema(50) - Supported basics:
sma(length),ema(length),rsi(length),macd(fast,slow,signal),stoch(k,d,smooth),bbands(length,std) - Indicator columns are appended to the CSV after the requested OHLCV columns.
MCP structured payload example (preferred for programmatic clients):
- Meaningful Data Check: Columns are included only if they have at least one non-zero value OR multiple different values
- Space Efficiency: Empty/constant columns are automatically excluded to reduce response size
- Consistency: Core OHLC columns (rates) and bid/ask columns (ticks) are always included
Response Format
Both functions return:
{
"success": true,
"symbol": "EURUSD",
"timeframe": "H1", // rates only
"candles": 100,
"csv_data": "time,open,high,low,close,tick_volume\n2025-08-29T14:00:00,1.16945,1.17072,1.16937,1.17017,2690\n..."
}
Timeframes
Supported timeframes for historical data (MetaTrader5):
- Minutes:
M1,M2,M3,M4,M5,M6,M10,M12,M15,M20,M30 - Hours:
H1,H2,H3,H4,H6,H8,H12 - Days/Weeks/Months:
D1,W1,MN1
Requirements
- Windows OS (MetaTrader5 requirement)
- MetaTrader5 terminal installed
- Python 3.8+
- Active internet connection for real-time data
Error Handling
All functions return structured responses with success/error status:
{
"success": True/False,
"data": {...}, # on success
"error": "Error message" # on failure
}
Security Notes
- Store credentials securely in environment variables
- Use demo accounts for testing
- Never commit credentials to version control
- Consider using read-only API access where possible
License
MIT License
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.