Connect Claude to your eToro account for portfolio management, trading, and market research.
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.
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.
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:Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.
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.
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.
| Tool | What it does |
|---|---|
| Configuration | Just add multiple servers to your MCP config — the assistant sees all tools from all servers: |
{
"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.
| Variable | Description | Required |
|---|---|---|
| ETORO_API_KEY | Credential the server authenticates with. | Yes |
| ETORO_USER_KEY | Credential the server authenticates with. | Yes |
| ETORO_TRADING_MODE | Configuration value read at startup. | Optional |
| FINANCIAL_DATASETS_API_KEY | Credential the server authenticates with. | Yes |
| TAVILY_API_KEY | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.