npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

tradernet-mcp-server

v1.0.2

Published

MCP server for Tradernet/Freedom24 trading API — portfolio, orders, quotes, and more

Readme

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.

Available Tools

| Tool | Description | |------|-------------| | get_user_data | Account info, portfolio summary, open positions | | get_user_info | User profile by ID | | 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 | | get_safety_types | Available 2FA session types | | get_best_traders | Trader rankings | | get_profit_list | Achievement/profit rankings | | get_invest_ideas | Investment ideas for a ticker | | get_blog_feed | Blog/investment posts feed | | raw_api_call | Call any Tradernet API command directly |

Setup

1. Get API Keys

  1. Log in to Tradernet or Freedom24
  2. Go to your profile settings
  3. 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-server"],
      "env": {
        "TRADERNET_PUBLIC_KEY": "your_public_key",
        "TRADERNET_PRIVATE_KEY": "your_private_key"
      }
    }
  }
}

Claude Code

claude mcp add tradernet -- npx -y tradernet-mcp-server

Then set environment variables TRADERNET_PUBLIC_KEY and TRADERNET_PRIVATE_KEY.

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"
  • "Who are the top traders?"

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