MCP Hub
Back to servers

XBTFX MCP Trading Server

Enables AI agents to trade forex, metals, indices, and cryptocurrencies via the Model Context Protocol using the XBTFX Trading API. It provides comprehensive tools for managing account balances, retrieving market data, and executing trade operations like opening, modifying, or closing positions.

glama
Updated
Mar 29, 2026

XBTFX MCP Trading Server

MCP server for the XBTFX Trading API — trade forex, metals, indices, and crypto from any AI agent that supports the Model Context Protocol.

Works with Claude Code, Claude Desktop, OpenAI Codex, Cursor, Windsurf, and any other MCP-compatible client.

Setup

  1. Get an API key from console.xbtfx.com

  2. Add to your AI tool:

Claude Code

claude mcp add xbtfx-trading -e XBTFX_API_KEY=xbtfx_live_your_key_here -- npx @xbtfx/mcp-trading

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "xbtfx-trading": {
      "command": "npx",
      "args": ["@xbtfx/mcp-trading"],
      "env": {
        "XBTFX_API_KEY": "xbtfx_live_your_key_here"
      }
    }
  }
}

OpenAI Codex

codex mcp add xbtfx-trading -- npx @xbtfx/mcp-trading

Then set the API key in your environment before running Codex:

export XBTFX_API_KEY="xbtfx_live_your_key_here"

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "xbtfx-trading": {
      "command": "npx",
      "args": ["@xbtfx/mcp-trading"],
      "env": {
        "XBTFX_API_KEY": "xbtfx_live_your_key_here"
      }
    }
  }
}

Tools

Account & Market Data

ToolDescription
get_auth_statusCheck API key status, login, margin mode, permissions
get_accountBalance, equity, margin, P&L, leverage
get_positionsAll open positions with P&L
get_ordersPending limit/stop orders
get_historyDeal history by period or date range
get_symbolsAll 400+ tradeable instruments
get_symbolDetailed spec for one symbol (digits, volume limits, spread)

Trading

ToolDescription
tradeOpen a position (buy/sell) with optional SL/TP
close_positionClose a position (full or partial)
modify_positionChange SL/TP on an existing position
close_byClose against an opposite position (hedging mode)
reverse_positionReverse a position direction
close_allClose all open positions
close_symbolClose all positions for one symbol

Example Conversation

You: What's my account balance?

AI: calls get_account — Your balance is $988.00 with $888.00 free margin. Leverage is 1:1000. No open positions.

You: Buy 0.01 lots of EURUSD with a 50 pip stop loss

AI: calls get_symbol for EURUSD, then calls trade — Opened BUY 0.01 EURUSD at 1.15350. Set SL at 1.14850 (50 pips). Ticket #23015470.

You: How's that position doing?

AI: calls get_positions — EURUSD BUY 0.01 lots: opened at 1.15350, current price 1.15380, P&L: +$0.30.

API Documentation

License

MIT

Reviews

No reviews yet

Sign in to write a review