We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ariadng/metatrader-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from .get_account_info import get_account_info
from .get_balance import get_balance
from .get_equity import get_equity
from .get_margin import get_margin
from .get_free_margin import get_free_margin
from .get_margin_level import get_margin_level
from .get_currency import get_currency
from .get_leverage import get_leverage
from .get_account_type import get_account_type
from .is_trade_allowed import is_trade_allowed
from .check_margin_level import check_margin_level
from .get_trade_statistics import get_trade_statistics
__all__ = [
"get_account_info",
"get_balance",
"get_equity",
"get_margin",
"get_free_margin",
"get_margin_level",
"get_currency",
"get_leverage",
"get_account_type",
"is_trade_allowed",
"check_margin_level",
"get_trade_statistics",
]