MCP server for Tradernet/Freedom24 trading API — portfolio, orders, quotes, and more
Tradernet MCP server exists for a simple reason — assistants are far more useful when they can act on Tradernet directly instead of describing what you should do. MCP server for Tradernet/Freedom24 trading API — portfolio, orders, quotes, and more.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
The server ships on npm as tradernet-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
Once Tradernet is connected, these are the calls the assistant has available:
get_user_data — Account info, portfolio summary, open positionsget_portfolio — Current positions, balances, P&Lplace_order — Place buy/sell/short/margin orderscancel_order — Cancel an active orderset_stop_loss_take_profit — Set SL/TP for a positionget_security_info — Ticker details (currency, exchange, min step)get_quotes_history — Historical OHLCV candlestick datasearch_tickers — Search securities by name or symboladd_price_alert — Set a price alert with notificationsdelete_price_alert — Remove a price alertget_security_sessions — List open security sessionsraw_api_call — Call any Tradernet API command directlyYou will need 3 environment variables: TRADERNET_PUBLIC_KEY, TRADERNET_PRIVATE_KEY, TRADERNET_API_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Tradernet's toolset — get_user_data, get_portfolio, place_order and 10 more — is a fair guide to whether it matches your workflow. It is maintained by verbart; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Tradernet's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| 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 |
| ChatGPT | 3. In ChatGPT: **Settings → Connectors → Add Connector**, enter your ngrok URL with /mcp path (e.g. https://abc123.ngrok-free.app/mcp) |
{
"mcpServers": {
"tradernet": {
"command": "npx",
"args": ["-y", "tradernet-mcp"],
"env": {
"TRADERNET_PUBLIC_KEY": "your_public_key",
"TRADERNET_PRIVATE_KEY": "your_private_key"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| TRADERNET_PUBLIC_KEY | Credential the server authenticates with. | Yes |
| TRADERNET_PRIVATE_KEY | Credential the server authenticates with. | Yes |
| TRADERNET_API_URL | Endpoint or connection string the server talks to. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.