forex-predict-mcp
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., "@forex-predict-mcppredict EURUSD direction with current features"
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.
forex-predict-mcp
A FastMCP server that exposes XGBoost directional predictions for EURUSD=X and GBPUSD=X as MCP tools. Packaged as a Docker stdio image — no env vars required.
Designed to run alongside the oanda-mcp-server as a tool for a Claude trading agent.
Tools
get_market_features(ticker)
Fetches ~1 year of daily OHLCV data from Yahoo Finance plus cross-asset data (DXY, VIX, EURUSD), computes the full feature vector, and returns it for inspection.
Parameters:
ticker—"EURUSD=X"or"GBPUSD=X"
Response:
{
"ticker": "EURUSD=X",
"as_of": "2026-06-19",
"features": {
"return_5d": 0.0124,
"return_10d": 0.0231,
"return_20d": -0.0052,
"rsi_14": 58.3,
"atr_14": 0.00234,
"macd_hist": 0.00012,
"sma50_ratio": 1.003,
"dxy_return_5d": -0.0081,
"dxy_return_20d": -0.0152,
"vix_return_5d": 0.122,
"vix_vs_sma20": -0.048
}
}GBPUSD=X additionally includes eurusd_return_5d and eurusd_return_20d.
get_forex_signal(ticker, features)
Runs the baked-in XGBoost model against pre-computed features and returns a directional signal.
Parameters:
ticker—"EURUSD=X"or"GBPUSD=X"features— thefeaturesdict fromget_market_features()
Response:
{
"ticker": "EURUSD=X",
"as_of": "2026-06-19",
"signal": "UP",
"prob_up": 0.773,
"confidence": 0.773
}Related MCP server: curistat-mcp
Typical agent workflow
1. get_market_features("EURUSD=X") → inspect RSI, DXY, VIX values
2. get_forex_signal("EURUSD=X", features) → UP 77.3%
3. cross-reference with Oanda live price and open positions
4. place or skip order.mcp.json configuration
Add the following entry to your .mcp.json (typically at the project root or ~/.claude/.mcp.json):
{
"mcpServers": {
"forex-predict-mcp": {
"type": "stdio",
"command": "docker",
"args": ["run", "--rm", "-i", "sleepingtalent/forex-predict-mcp:latest"]
}
}
}If you already have other servers (e.g. oanda-mcp-server), add forex-predict-mcp alongside them:
{
"mcpServers": {
"oanda-mcp-server": {
"type": "stdio",
"command": "docker",
"args": ["run", "--rm", "-i", "-e", "OANDA_API_KEY", "-e", "OANDA_ACCOUNT_ID", "-e", "OANDA_ENVIRONMENT", "sleepingtalent/oanda-mcp-server:latest"]
},
"forex-predict-mcp": {
"type": "stdio",
"command": "docker",
"args": ["run", "--rm", "-i", "sleepingtalent/forex-predict-mcp:latest"]
}
}
}Models
XGBoost binary classifiers trained on 5 years of daily data:
Ticker | Features | Test accuracy |
EURUSD=X | 11 (returns, RSI, ATR, MACD, SMA50, DXY, VIX) | 68.80% |
GBPUSD=X | 13 (same + EURUSD cross-asset returns) | 67.60% |
Models are baked into the Docker image at build time. To update: retrain in weights-biases-example, run uv run task export_models, copy the JSON files into src/forex_predict_mcp/models/, and push — CI publishes a new tagged image automatically.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables algorithmic stock trading analysis by combining ARIMA, ARIMA-GARCH, and XGBoost models to generate buy/sell/hold signals with risk management, portfolio comparison, and volatility analysis for various market sectors.Last updated1
- AlicenseAqualityDmaintenanceFutures volatility intelligence MCP server for ES, NQ, and related products. Provides forecasts, regime detection, rare signals, and research tools for AI trading agents.Last updated101MIT
- Alicense-qualityCmaintenanceEnables interaction with MetaTrader 5 for market data, technical analysis, Fibonacci calculations, and trading via MCP clients such as Claude.Last updatedMIT
- Flicense-qualityDmaintenanceEnables trading on MetaTrader5 platform via MCP, including account management, order placement, market data, technical indicators, and signal tools.Last updated4
Related MCP Connectors
Validated trading edges across futures, equities, crypto. Live signals, full audit trail.
Agent-native crypto market-data over MCP+REST: order flow, whales, liquidations, calibrated scores
Connect any MCP client to MetaTrader 4/5 to read prices, manage positions, and place trades.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/SleepingTalent/forex-predict-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server