We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/emerzon/mt-data-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•485 B
"""MetaTrader5 MCP Server - Market Data Provider"""
from __future__ import annotations
from pathlib import Path
# If the repo root is imported as the `mtdata` package (e.g. when running tests
# with the parent directory on `sys.path`), expose the real src-layout package.
_src_pkg = Path(__file__).resolve().parent / "src" / "mtdata"
if _src_pkg.is_dir():
__path__.append(str(_src_pkg)) # type: ignore[name-defined]
__version__ = "0.1.0"
__author__ = "MCP MetaTrader5 Server"