MQL5 EA MCP Server
The MQL5 EA MCP Server is a local, offline tool for MQL5 developers that provides documentation lookup, search, and compilation error diagnosis — entirely without external API calls or internet access.
Smart Query (Recommended) – Intelligently query for MQL5 functions, classes, concepts, or compile errors; returns concise answers in quick (~500 tokens) or detailed (~1500 tokens) mode.
Search – Search MQL5 documentation by function name, class name, or keywords across the MQL5 Reference, Algo Book, and Neural Networks Book.
Get Document – Retrieve the full content of a specific documentation page by filename, title,
docId, or alias.Browse Categories – Navigate the documentation index by category, dynamically generated from the actual index.
Diagnose Compile Error – Parse MQL5 compile logs from MetaEditor, identify file/line/column/error codes, and suggest relevant documentation and fixes.
Log Error – Record encountered compile errors and their solutions into a local error database for future reference.
List Common Errors – View the most frequently encountered compile errors, sorted by occurrence frequency.
Manage Error DB – Export, import, or view statistics of the local error database, with optional anonymization for sharing.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MQL5 EA MCP ServerHow to send a market order with OrderSend?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MQL5 EA MCP Server
MCP server tra cứu tài liệu MQL5 cục bộ. Server lập chỉ mục từ MQL5_HELP, MQL5_Algo_Book và Neural_Networks_Book, sau đó cung cấp các công cụ tìm kiếm, truy vấn nhanh, đọc tài liệu, duyệt danh mục và chẩn đoán lỗi biên dịch.
Tất cả dữ liệu chạy cục bộ. Không cần dịch vụ mạng, không gửi tài liệu hay lỗi biên dịch ra ngoài.
Tính năng chính
Tìm kiếm tài liệu MQL5 bằng SQLite FTS5.
Hỗ trợ ba nguồn tài liệu: Reference, Algo Book và Neural Networks Book.
smart_querytrả lời gọn theo hàm, class, khái niệm hoặc lỗi thường gặp.diagnose_errorphân tích log compile từ MetaEditor/terminal và gợi ý API liên quan.Error DB cục bộ giúp lưu lại lỗi và cách sửa để dùng lại về sau.
browsesinh danh mục từ index thật, không dùng danh sách hard-code.Output của
smart_queryvàgetđược giới hạn độ dài để tiết kiệm token.
Related MCP server: MCP Doc Server
Cài đặt nhanh
Yêu cầu:
Node.js 18 trở lên.
Claude Desktop, Cursor, Codex hoặc MCP client tương thích.
Ví dụ cấu hình MCP:
{
"mcpServers": {
"mql5-ea": {
"command": "npx",
"args": ["-y", "mql5-ea-mcp@1.4.1"]
}
}
}Khi phát triển local:
npm install
npm run build
npm run build:index
node build/index.jsDữ liệu cục bộ
Docs index:
~/.mql5-ea-mcp/indexes/docs-v<schema>-<corpus-hash>.sqliteError DB:
~/.mql5-ea-mcp/mql5_errors.db
Khi publish, package npm chứa sẵn SQLite index. Lần chạy đầu chỉ copy index này vào cache người dùng; các truy vấn sau không scan hay parse tài liệu HTML. Khi nâng phiên bản corpus, server tự tạo cache mới theo manifest; cache cũ có thể xóa an toàn khi không còn cần.
Biến môi trường dành cho development/test:
MQL5_EA_DATA_DIR: thay thư mục chứadocs_index.sqlitevà manifest đã build.MQL5_EA_CACHE_DIR: thay thư mục cache index cục bộ.
Danh sách tool
smart_queryTruy vấn thông minh. Dùng cho hàm, class, lỗi compile, câu hỏi "cách làm" và khái niệm.searchTìm tài liệu theo title, filename, alias, category, summary và nội dung.getĐọc tài liệu chi tiết theodocId, đường dẫn, title hoặc alias.browseDuyệt danh mục sinh từ docs index.diagnose_errorParse log biên dịch MQL5, chỉ ra file/dòng/cột/mã lỗi, thêm migration hints và tài liệu liên quan.log_errorGhi lỗi đã gặp vào error DB cục bộ.list_common_errorsXem lỗi thường gặp theo tần suất.manage_error_dbExport/import/thống kê error DB.
Ví dụ sử dụng
Tra cứu nhanh:
smart_query(query="OrderSend MqlTradeRequest", mode="quick")Tra cứu chi tiết:
smart_query(query="CopyBuffer indicator handle", mode="detailed")Tìm chương trong sách:
search(query="datetime session filters", limit=5)
search(query="GPT transformer self attention", limit=5)Tìm ONNX trong MQL5 Reference:
search(query="ONNX model inference", limit=5)Chẩn đoán log compile:
diagnose_error(
log="ma_cross_ea.mq5(155,39) : error 256: undeclared identifier 'ResultCode'",
limit=5
)Gợi ý dùng tool
Với đa số tình huống, hãy bắt đầu bằng smart_query. Nếu cần xem nhiều kết quả, dùng search. Nếu đã biết chính xác tài liệu cần đọc, dùng get. Khi có cả đoạn log compile, dùng diagnose_error thay vì hỏi từng lỗi rời rạc.
ONNX thuộc MQL5_HELP, không thuộc Neural_Networks_Book. Với Neural book, dùng các query như GPT transformer self attention, perceptron, attention, OpenCL neural network.
Hướng dẫn bổ sung
QUICK_START_SMART_QUERY.md: hướng dẫn bắt đầu nhanh.SMART_QUERY_GUIDE.md: hướng dẫn chi tiết vềsmart_query.AI_USAGE_GUIDE.md: cách dùng với trợ lý lập trình khi sửa lỗi compile.ERROR_COLLECTION_GUIDE.md: cách dùng error DB cục bộ.
Kiểm thử và build
npm run build
npm run build:index
npm testKết quả mong đợi:
TypeScript build thành công.
Vitest pass toàn bộ test.
build/được refresh sau khi sửa TypeScript.data/docs_index.sqlitevàdata/docs_index.manifest.jsonđược tạo trước khi đóng gói/phát hành.
Ghi chú phát triển
Project dùng
better-sqlite3, SQLite FTS5, Cheerio và Vitest.package-lock.jsonhiện không được commit vì.gitignoređang ignore lockfile.Error DB là dữ liệu người dùng, không lưu trong repo.
Tài liệu HTML chỉ là input cho release build. Chạy
npm pack --dry-runđể kiểm tra tarball chỉ chứabuild/,data/, README và LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/ductri-dev/mql5-ea-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server