eToro MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ETORO_API_KEY | Yes | Your eToro API key. | |
| ETORO_USER_KEY | Yes | Your eToro user key. | |
| ETORO_TRADING_MODE | No | Trading mode: 'demo' or 'real'. | demo |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| etoro_check_connectionA | Verifies the configured eToro API key works and lists any agent-portfolios on the account (read-only). |
| etoro_portfolio_summaryA | Returns total portfolio value, total invested, unrealized P&L, and available cash for the real eToro account (read-only). |
| etoro_holdingsA | Returns open positions grouped by instrument with invested amount, current value, P&L, P&L%, and portfolio weight % (read-only). |
| etoro_raw_pnlA | Returns the raw response from /trading/info/real/pnl: every open position, pending order, and account-level PnL (read-only, large output). |
| etoro_search_instrumentA | Resolves a trading symbol (e.g. AAPL, BTC) to an eToro instrument ID (read-only). |
| etoro_instrument_detailsA | Fetches display metadata (name, type, exchange, etc.) for one or more instrument IDs (read-only). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Most tools are clearly distinct: connection check, portfolio summary, holdings, raw PnL, instrument search, and instrument details. However, etoro_holdings and etoro_raw_pnl both report open positions, and could be confused if an agent doesn't read descriptions carefully.
All tools share the etoro_ prefix and use snake_case, but there is a mix of verb-led names (check_connection, search_instrument) and noun-led names (portfolio_summary, holdings, raw_pnl, instrument_details). The pattern is not uniform verb_noun, but it remains readable and predictable.
With 6 tools, the set is well-scoped for a read-only eToro integration. Each tool covers a distinct aspect of account viewing and instrument lookup, avoiding bloat while providing essential functionality.
The toolset provides solid read-only coverage: connection verification, portfolio overview, detailed positions, raw P&L, instrument search, and instrument details. Minor gaps include no historical transactions or watchlist functionality, but core usage is well supported.