EToro MCP Server

Connect Claude to your eToro account for portfolio management, trading, and market research.

Remote serverstreamable-http

What is the EToro MCP server?

Connect Claude to your eToro account for portfolio management, trading, and market research. The etoro mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 1 defined tool rather than through you.

What it actually does

MCP server wrapping the eToro public API, exposing 35 tools for AI assistants (Claude Desktop, Cursor, Claude Code, etc.). Built for investment research and portfolio analysis — assess positions, research instruments and themes, vet popular investors for copy-trading, backtest DCA strategies against historical data. Trading is fully supported, but use care: letting an AI agent place real-money orders is genuinely risky, and you should treat it as such.

Its toolset

Everything the assistant can do here goes through one of these:

  • Configuration — Just add multiple servers to your MCP config — the assistant sees all tools from all servers:

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Configuration

You will need 5 environment variables: ETORO_API_KEY, ETORO_USER_KEY, ETORO_TRADING_MODE, FINANCIAL_DATASETS_API_KEY, TAVILY_API_KEY. 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.

When to reach for it

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. EToro's toolset — Configuration — is a fair guide to whether it matches your workflow. It is maintained by gabrielcerutti; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the etoro mcp server does with a few real requests.

Available tools

ToolWhat it does
ConfigurationJust add multiple servers to your MCP config — the assistant sees all tools from all servers:

How to install the EToro MCP server

{
  "mcpServers": {
    "etoro": {
      "command": "npx",
      "args": ["-y", "etoro-mcp-server"],
      "env": {
        "ETORO_API_KEY": "your-api-key",
        "ETORO_USER_KEY": "your-user-key",
        "ETORO_TRADING_MODE": "demo"
      }
    },
    "financial-data": {
      "command": "npx",
      "args": ["-y", "financial-datasets-mcp-server"],
      "env": {
        "FINANCIAL_DATASETS_API_KEY": "your-key"
      }
    },
    "news": {
      "command": "npx",
      "args": ["-y", "tavily-mcp-server"],
      "env": {
        "TAVILY_API_KEY": "your-key"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
ETORO_API_KEYCredential the server authenticates with.Yes
ETORO_USER_KEYCredential the server authenticates with.Yes
ETORO_TRADING_MODEConfiguration value read at startup.Optional
FINANCIAL_DATASETS_API_KEYCredential the server authenticates with.Yes
TAVILY_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use EToro to Configuration.

Frequently asked questions

It connects EToro to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (Configuration) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with EToro directly.