oanda-mcp
MCP server for the Oanda v20 REST API enabling forex/CFD trading account management, market data retrieval, and order/trade operations with a read-first design and practice environment by default.
README
oanda-mcp
MCP server for the Oanda v20 REST API (forex/CFD trading): account state, candles, live pricing, order books, orders, trades, positions, and transaction history. It defaults to the practice environment, and the trading (write) tools are not registered at all unless explicitly enabled — a client connected to the default configuration cannot see or call them.
Features
- Read-first by design — 22 read tools cover accounts, market data, pricing, orders, trades,
positions, and transaction history; the 7 write tools exist only when
OANDA_MCP_ENABLE_TRADINGis set. - Practice environment by default — the live host is opt-in via
OANDA_ENV=live. - Trimmed responses — tools return the fields a trader acts on (prices, units, P/L,
timestamps), not raw API dumps; list tools accept a
limitparameter. - v20 conventions preserved — prices and monetary values are decimal strings, timestamps are RFC3339, units are signed (positive = long, negative = short).
- Credentials stay in the environment — the token travels only in the
Authorizationheader, and error messages never echo header or credential values. - Rate-limit aware — HTTP 429 responses are retried once, honouring
Retry-After.
Tools
Read tools (always registered)
| Tool | Description |
|---|---|
list_accounts |
List the accounts authorized for the configured API token |
get_account |
Full state of the configured account, trimmed to summary level |
get_account_summary |
Lightweight account summary: balance, NAV, margin headroom |
list_account_instruments |
Instruments tradeable on the account, with pip location, display precision, trade size limits, and margin rate |
get_account_changes |
Poll for order/trade/position changes since a transaction ID |
get_candles |
OHLC candles for an instrument at any granularity (S5 through monthly) |
get_order_book |
Aggregate pending-order book snapshot around the current price |
get_position_book |
Aggregate open-position book snapshot around the current price |
get_pricing |
Current bid/ask/spread for one or more instruments |
get_latest_candles |
Most recent candle per instrument/granularity specification |
list_orders |
Orders on the account, filterable by instrument and state |
list_pending_orders |
Every pending order on the account |
get_order |
A single order by ID or client-assigned ID |
list_trades |
Trades on the account, filterable by instrument and state |
list_open_trades |
Every open trade, with attached take-profit/stop-loss orders |
get_trade |
A single trade by ID or client-assigned ID |
list_positions |
Every position ever held, one per instrument, with lifetime P/L |
list_open_positions |
Positions with at least one open trade |
get_position |
The account's position for one instrument |
list_transactions |
Transaction page links for a time range (fetch pages with get_transactions_range) |
get_transaction |
A single transaction by ID |
get_transactions_range |
The transactions in an inclusive ID range |
Write tools (registered only when OANDA_MCP_ENABLE_TRADING is set)
| Tool | Description |
|---|---|
configure_account |
Change the account alias and/or account-wide margin rate |
create_order |
Create a MARKET/LIMIT/STOP/MARKET_IF_TOUCHED order with optional take profit / stop loss / trailing stop on fill |
replace_order |
Replace a pending order atomically (cancel + create) |
cancel_order |
Cancel a pending order |
close_trade |
Close an open trade, fully or partially, with a market order |
set_trade_orders |
Create, replace, or cancel a trade's take profit, stop loss, and trailing stop |
close_position |
Close the long and/or short side of an instrument's position |
Configuration
All configuration comes from environment variables — no config files, no flags carrying secrets.
| Variable | Default | Purpose |
|---|---|---|
OANDA_API_TOKEN |
— (required) | Personal access token, sent as Authorization: Bearer ... |
OANDA_ACCOUNT_ID |
first authorized account | Account to operate on |
OANDA_ENV |
practice |
practice (api-fxpractice) or live (api-fxtrade) |
OANDA_MCP_ENABLE_TRADING |
off | true/1/yes registers the write tools |
Getting started
Run straight from the repository with uv:
uvx --from git+https://github.com/florinel-chis/oanda-mcp oanda-mcp
The server speaks stdio by default; pass --transport http --host 127.0.0.1 --port 8000 to serve
streamable HTTP at /mcp instead.
Warning: the HTTP endpoint has no authentication — anyone who can reach the port can call every registered tool with your
OANDA_API_TOKEN's privileges. The server therefore refuses to bind a non-loopback--hostunless--allow-remoteis also passed; only use that flag behind an authenticated reverse proxy or an otherwise-restricted network (such as the Docker port-mapping below).
MCP client configuration
Add the server to your MCP client's configuration (the exact file location depends on the client):
{
"mcpServers": {
"oanda": {
"command": "uvx",
"args": ["--from", "git+https://github.com/florinel-chis/oanda-mcp", "oanda-mcp"],
"env": {
"OANDA_API_TOKEN": "your-token",
"OANDA_ENV": "practice"
}
}
}
}
Or run the Docker image (build it first, see below):
{
"mcpServers": {
"oanda": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "OANDA_API_TOKEN", "-e", "OANDA_ENV", "oanda-mcp"],
"env": {
"OANDA_API_TOKEN": "your-token",
"OANDA_ENV": "practice"
}
}
}
}
Docker
docker build -t oanda-mcp .
# stdio (for MCP client configs)
docker run -i --rm -e OANDA_API_TOKEN oanda-mcp
# streamable HTTP at http://127.0.0.1:8000/mcp
# (-p 127.0.0.1:8000:8000 keeps the unauthenticated endpoint off external interfaces;
# --host 0.0.0.0 refers to interfaces inside the container and is required for the
# port mapping to work, hence --allow-remote — the host-side bind stays loopback-only)
docker run --rm -p 127.0.0.1:8000:8000 -e OANDA_API_TOKEN \
oanda-mcp --transport http --host 0.0.0.0 --port 8000 --allow-remote
Safety
- The server talks to the practice environment unless
OANDA_ENV=liveis set. - Trading tools are hidden unless
OANDA_MCP_ENABLE_TRADINGis set — they are never registered, not merely rejected, so MCP clients cannot discover or call them. - The HTTP transport is unauthenticated: anyone who can reach the port can call every
registered tool — read balances and positions always, and place or close orders when trading
is enabled — using your API token's privileges. Keep it bound to
127.0.0.1(the stdio transport has no such exposure), or front it with an authenticated proxy if remote access is genuinely needed. - Order placement has a sharp edge: the API can accept an order and cancel it in the same
response — a FOK market order, for example, is cancelled for
INSUFFICIENT_MARGINorMARKET_HALTED. The order tools surface the cancel transaction so this is visible, but always check it before treating an order as filled. - Trading leveraged products is risky. Use at your own risk, and test everything against a practice account first.
Development
uv sync
uv run pytest
uv run ruff check .
Tests are hermetic: all HTTP is mocked with respx and the server is exercised through the
in-memory FastMCP client. No credentials or network access are needed to run them. A manual,
read-only smoke check against a real practice account lives at scripts/smoke.py.
License
MIT — see LICENSE.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。