Tradernet MCP Server
MCP server for Tradernet/Freedom24 trading API — portfolio, orders, quotes, alerts and more
Tradernet MCP Server
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.
Available Tools
| 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 |
Setup
1. Get API Keys
- Log in to Tradernet or Freedom24
- Go to your profile settings
- Generate API keys (Public Key and Private Key)
2. Configure
Claude Desktop
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 Code
claude mcp add tradernet -- npx -y tradernet-mcp
Then set environment variables TRADERNET_PUBLIC_KEY and TRADERNET_PRIVATE_KEY.
ChatGPT
ChatGPT only supports remote MCP servers over HTTP. To connect this stdio server, use supergateway as a bridge and ngrok to expose it publicly:
- Start the server with HTTP transport:
TRADERNET_PUBLIC_KEY=your_public_key \
TRADERNET_PRIVATE_KEY=your_private_key \
npx -y supergateway --stdio "npx -y tradernet-mcp" --outputTransport streamableHttp --port 8000
- Expose it via ngrok:
ngrok http 8000
- In ChatGPT: Settings → Connectors → Add Connector, enter your ngrok URL with
/mcppath (e.g.https://abc123.ngrok-free.app/mcp)
Requires ChatGPT Pro, Team, or Enterprise plan with Developer Mode enabled.
Usage Examples
Once connected, you can ask your AI assistant things like:
- "Show my portfolio"
- "What are my open positions?"
- "Buy 10 shares of AAPL"
- "Set stop-loss for SBER at 250"
- "Search for Tesla stock"
- "Show AAPL price history for the last month"
- "Set an alert when MSFT crosses $400"
Environment Variables
| 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) |
API Documentation
This server implements the Tradernet API. For the full API reference, see the official documentation.
License
MIT
İlgili Sunucular
mcp-server-insumer
On-chain token verification across 31 blockchains. 16 tools for ECDSA-signed attestations, discount codes, merchant discovery, and autonomous onboarding.
TFT MCP Server
Access Team Fight Tactics (TFT) game data using the Riot Games API.
Cloudflare
Deploy, configure & interrogate your resources on the Cloudflare developer platform (e.g. Workers/KV/R2/D1)
MCP Freshbooks Blockchain
Integrates Freshbooks with blockchain technology for immutable financial records.
OpZero Remote MCP Bridge
The remote MCP bridge that lets any AI agent deploy, manage, and scale applications to Cloudflare, Netlify, or Vercel.
Remote MCP Server on Cloudflare
A self-hostable MCP server for Cloudflare Workers with OAuth login support, using Cloudflare KV for storage.
MCP Salesforce Connector
Interact with Salesforce data using SOQL queries and SOSL searches via an MCP server.
Cloudways MCP Server
Integrates with the Cloudways API, allowing AI assistants to access and manage Cloudways infrastructure.
Ntropy MCP server
Enrich banking data using the Ntropy API.
Remote MCP Server (Authless)
An example of a remote MCP server deployable on Cloudflare Workers without authentication.