Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"tradernet": {
"env": {
"TRADERNET_PUBLIC_KEY": "your_public_key",
"TRADERNET_PRIVATE_KEY": "your_private_key"
},
"args": [
"-y",
"tradernet-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for the Tradernet / Freedom24 trading platform API. Manage your portfolio, place orders, get quotes, search tickers, set alerts — all through AI assistants like Claude, ChatGPT, and others.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'tradernet-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked tradernet-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol (MCP) server that provides AI assistants with direct access to the Spreedly payments API. Enables LLMs to manage gateways, process transactions, tokenize payment methods, and more, through structured, validated tool calls.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
Model Context Protocol for Actual Budget API
MCP Security Weekly
Get CVE alerts and security updates for Tradernet MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for the Tradernet / Freedom24 trading platform API. Manage your portfolio, place orders, get quotes, search tickers, set alerts — all through AI assistants like Claude, ChatGPT, and others.
| Tool | Description |
|---|---|
get_user_data | Account info, portfolio summary, open positions |
get_portfolio | Current positions, balances, P&L |
place_order | Place buy/sell/short/margin orders |
cancel_order | Cancel an active order |
set_stop_loss_take_profit | Set SL/TP for a position |
get_security_info | Ticker details (currency, exchange, min step) |
get_quotes_history | Historical OHLCV candlestick data |
search_tickers | Search securities by name or symbol |
add_price_alert | Set a price alert with notifications |
delete_price_alert | Remove a price alert |
get_security_sessions | List open security sessions |
raw_api_call | Call any Tradernet API command directly |
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"tradernet": {
"command": "npx",
"args": ["-y", "tradernet-mcp"],
"env": {
"TRADERNET_PUBLIC_KEY": "your_public_key",
"TRADERNET_PRIVATE_KEY": "your_private_key"
}
}
}
}
claude mcp add tradernet -- npx -y tradernet-mcp
Then set environment variables TRADERNET_PUBLIC_KEY and TRADERNET_PRIVATE_KEY.
ChatGPT only supports remote MCP servers over HTTP. To connect this stdio server, use supergateway as a bridge and ngrok to expose it publicly:
TRADERNET_PUBLIC_KEY=your_public_key \
TRADERNET_PRIVATE_KEY=your_private_key \
npx -y supergateway --stdio "npx -y tradernet-mcp" --outputTransport streamableHttp --port 8000
ngrok http 8000
/mcp path (e.g. https://abc123.ngrok-free.app/mcp)Requires ChatGPT Pro, Team, or Enterprise plan with Developer Mode enabled.
Once connected, you can ask your AI assistant things like:
| Variable | Required | Description |
|---|---|---|
TRADERNET_PUBLIC_KEY | Yes | Your Tradernet API public key |
TRADERNET_PRIVATE_KEY | Yes | Your Tradernet API private key |
TRADERNET_API_URL | No | API base URL (default: https://tradernet.com/api) |
This server implements the Tradernet API. For the full API reference, see the official documentation.
MIT