# io.github.verbart/tradernet-mcp-server (npm · tradernet-mcp-server)

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

- Trust score: 59/100 (low)
- Change this week: +19
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `tradernet-mcp-server`: 59/100 (this document), [markdown](https://verifymcp.io/servers/verbart-tradernet-mcp-server/tradernet-mcp-server.md), [page](https://verifymcp.io/servers/verbart-tradernet-mcp-server/tradernet-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `tradernet-mcp-server`
- Version: `1.0.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (107 of 108), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (107 of 108), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL redirects; it must resolve directly.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 166 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1087 tokens (~60/item across 18 items; 18 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add verbart-tradernet-mcp-server -- npx -y tradernet-mcp-server
```

### Codex

```bash
codex mcp add verbart-tradernet-mcp-server -- npx -y tradernet-mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "verbart-tradernet-mcp-server": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "tradernet-mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add verbart-tradernet-mcp-server --command npx --arg -y --arg tradernet-mcp-server
```

### Hermes

```yaml
mcp_servers:
  verbart-tradernet-mcp-server:
    command: "npx"
    args: ["-y", "tradernet-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "verbart-tradernet-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "tradernet-mcp-server"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 59, +43)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Schema quality: unverified → good
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-07-31 (score 16, +16)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 0, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-28 (score 18, −22)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 40)

First indexed and scored.

## MCP tools (18)

### `get_user_data` (~34 tokens)

Get initial user data (account info, portfolio summary, open positions). This is the primary command to check your account status.

### `get_user_info` (~30 tokens)

Get user profile information by user ID

Input parameters:

- `user_id` (number, required): User ID to look up

### `get_portfolio` (~35 tokens)

Get current portfolio positions and account balances. Returns account funds, open positions with P&L, market values, and settlement info.

### `place_order` (~144 tokens)

Place a new trading order (buy, sell, short, margin). Returns order_id on success.

Input parameters:

- `action` (string, required): Order action
- `expiration` (string): Order expiration: day, day+extended, or good-till-cancelled
- `instrument` (string, required): Ticker symbol, e.g. "AAPL.US", "SBER", "SIE.EU"
- `limit_price` (number): Limit price (for limit and stop_limit orders)
- `order_type` (string, required): Order type
- `quantity` (integer, required): Number of shares/lots
- `stop_price` (number): Stop price (for stop and stop_limit orders)

### `cancel_order` (~28 tokens)

Cancel an active order by its ID

Input parameters:

- `order_id` (number, required): Order ID to cancel

### `set_stop_loss_take_profit` (~91 tokens)

Set stop-loss and/or take-profit for a position. Pass null to leave unchanged.

Input parameters:

- `instrument` (string, required): Ticker symbol, e.g. "AAPL.US"
- `stop_loss` (required): Stop-loss price, or null to skip
- `take_profit` (required): Take-profit price, or null to skip
- `trailing_stop_percent`: Trailing stop-loss percentage, or null to skip

### `get_security_info` (~51 tokens)

Get detailed information about a security/ticker (name, currency, exchange, min step, etc.)

Input parameters:

- `ticker` (string, required): Ticker symbol, e.g. "AAPL.US", "SBER"

### `get_quotes_history` (~175 tokens)

Get historical candlestick (OHLCV) data for a ticker. Returns arrays of high/low/open/close prices with timestamps.

Input parameters:

- `count` (integer): Extra candlesticks beyond the date range (0 = none)
- `date_from` (string, required): Start date in format "DD.MM.YYYY hh:mm", e.g. "01.01.2025 00:00"
- `date_to` (string, required): End date in format "DD.MM.YYYY hh:mm", e.g. "31.01.2025 23:59"
- `ticker` (string, required): Ticker symbol, e.g. "AAPL.US"
- `timeframe` (string, required): Candle interval in minutes: 1, 5, 15, 60 (1h), or 1440 (1d)

### `search_tickers` (~97 tokens)

Search for securities/tickers by name or symbol. Supports market filter with @ syntax, e.g. "AAPL@FIX" for NYSE/NASDAQ.

Input parameters:

- `query` (string, required): Search text. Use "TICKER@MARKET" to filter by market. Markets: MCX (MICEX), FORTS (derivatives), FIX (NYSE/NASDAQ), EU (Europe), KASE (Kazakhstan)

### `add_price_alert` (~146 tokens)

Set a price alert for a ticker. You'll be notified when the price condition is met.

Input parameters:

- `alert_period` (string): Re-alert frequency in seconds (0 = once)
- `notification_type` (string): How to notify: email, sms, push, or all
- `price` (string, required): Target price for the alert
- `quote_type` (string): Price basis: ltp (last trade), bap (best bid), bbp (best ask), op (open), pp (close)
- `ticker` (string, required): Ticker symbol in Tradernet format, e.g. "AAPL.US"
- `trigger_type` (string, required): When to trigger the alert

### `delete_price_alert` (~30 tokens)

Delete an existing price alert by its ID

Input parameters:

- `alert_id` (number, required): Alert ID to delete

### `get_security_sessions` (~23 tokens)

Get list of currently open security sessions (for two-factor authentication operations)

### `get_safety_types` (~22 tokens)

Get available security session types (SMS, token, etc.)

### `get_best_traders` (~20 tokens)

Get the ranking of best traders on the platform

### `get_profit_list` (~16 tokens)

Get achievement/profit ranking list

### `get_invest_ideas` (~38 tokens)

Get investment ideas/feed for a specific ticker

Input parameters:

- `ticker` (string, required): Ticker symbol, e.g. "AAPL.US"

### `get_blog_feed` (~31 tokens)

Get user subscription blog feed (investment posts and ideas)

Input parameters:

- `page` (integer): Page number for pagination

### `raw_api_call` (~76 tokens)

Make a raw API call to any Tradernet command. Use this for commands not covered by other tools.

Input parameters:

- `command` (string, required): API command name
- `params` (string): JSON string of parameters
- `use_v2` (boolean): Use API v2 endpoint (/api/v2/cmd/) instead of v1

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/verbart-tradernet-mcp-server/tradernet-mcp-server#diagnostics

## Score history

- 2026-08-03: 59
- 2026-08-02: 59
- 2026-08-01: 16
- 2026-07-31: 16
- 2026-07-30: 0
- 2026-07-28: 18
- 2026-07-27: 40

## Links

- npm package: https://www.npmjs.com/package/tradernet-mcp-server
- Socket report: https://socket.dev/npm/package/tradernet-mcp-server
- Changelog RSS feed: https://verifymcp.io/servers/verbart-tradernet-mcp-server/tradernet-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/verbart-tradernet-mcp-server/tradernet-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/verbart-tradernet-mcp-server/tradernet-mcp-server
