MCP server
by shlomico-tr
eToro MCP Server: Model Context Protocol tools to access eToro API endpoints—fetch portfolios, search instruments, get i
Connects 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.
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.
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.
MIT
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.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
We evaluated eToro MCP Server against two servers with overlapping tools; this profile had the clearer scope statement.
eToro MCP Server is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
eToro MCP Server is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Useful MCP listing: eToro MCP Server is the kind of server we cite when onboarding engineers to host + tool permissions.
eToro MCP Server reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
eToro MCP Server reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
We evaluated eToro MCP Server against two servers with overlapping tools; this profile had the clearer scope statement.
I recommend eToro MCP Server for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
eToro MCP Server is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
eToro MCP Server is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
showing 1-10 of 34
This server provides MCP (Model Context Protocol) tools for interacting with eToro's public API endpoints. It allows you to:
Install dependencies:
npm install
Start the development server:
npm run dev
Build for production:
npm run build
Start the production server:
npm start
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 requestsFetches 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 to displayname, threeMonthPriceChange, oneYearPriceChange, lastYearPriceChange)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 to internalInstrumentId, displayname, internalClosingPrice)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.
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"}'
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.