
eToro MCP Server
OfficialConnects to eToro's public API to fetch user portfolios, look up trading instrument details, and search for financial instruments. Handles CORS restrictions by running server-side.
Provides Model Context Protocol tools for interacting with eToro's public API endpoints, allowing users to fetch portfolios, look up instrument details, and search for instruments while handling CORS restrictions.
What it does
- Fetch eToro user portfolios by username
- Look up trading instrument details by ID
- Search for financial instruments by name
- Handle CORS-restricted API calls server-side
Best for
About eToro MCP Server
eToro MCP Server is an official MCP server published by shlomico-tr that provides AI assistants with tools and capabilities via the Model Context Protocol. eToro MCP Server: Model Context Protocol tools to access eToro API endpoints—fetch portfolios, search instruments, get i It is categorized under finance, developer tools.
How to install
You can install eToro MCP Server in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
License
eToro MCP Server is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
eToro MCP Server
This server provides MCP (Model Context Protocol) tools for interacting with eToro's public API endpoints. It allows you to:
- Fetch a user's portfolio using their username
- Look up instrument details by IDs
- Search for instruments by name prefix (autocomplete)
Getting Started
-
Install dependencies:
npm install -
Start the development server:
npm run dev -
Build for production:
npm run build -
Start the production server:
npm start
Available Tools
fetch_etoro_portfolio
Fetches an eToro user's portfolio using their username. The tool automatically converts the username to a Customer ID (CID) internally.
Parameters:
username: The eToro usernameauthToken(optional): Authorization token for authenticated requests
fetch_instrument_details
Fetches details for a list of eToro instruments.
Parameters:
instrumentIds: List of instrument IDs to fetch details forfields(optional): Fields to include in the response (defaults todisplayname,threeMonthPriceChange,oneYearPriceChange,lastYearPriceChange)
search_instruments
Searches for eToro instruments by name prefix (autocomplete).
Parameters:
namePrefix: The prefix to search for in instrument namesfields(optional): Fields to include in the response (defaults tointernalInstrumentId,displayname,internalClosingPrice)
CORS Limitations
Note that some of the eToro API endpoints have CORS restrictions and should be called from a server-side environment. The tools in this server handle these requests on the server side to avoid CORS issues.
Usage Example
The server exposes a REST API for accessing these tools, which can be called from any HTTP client:
GET /tools # List all available tools
GET /tools/:name/schema # Get tool schema
POST /tools/:name/execute # Execute a tool
Example of using the fetch_etoro_portfolio tool:
curl -X POST http://localhost:3000/tools/fetch_etoro_portfolio/execute \
-H "Content-Type: application/json" \
-d '{"username": "yoniasia"}'
Alternatives
Related Skills
Browse all skillsProduction-ready financial analyst skill with ratio analysis, DCF valuation, budget variance analysis, and rolling forecast construction. 4 Python tools (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw.
UI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.
Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: "AI SDK", "Vercel AI SDK", "generateText", "streamText", "add AI to my app", "build an agent", "tool calling", "structured output", "useChat".
Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.
Use when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.
Guide for building TypeScript CLIs with Bun. Use when creating command-line tools, adding subcommands to existing CLIs, or building developer tooling. Covers argument parsing, subcommand patterns, output formatting, and distribution.