IntegrateIntegrate
Integrations

eToro Integration

Access eToro Public API identity, portfolio, market data, trade history, and watchlists

The eToro integration provides access to access eToro Public API identity, portfolio, market data, trade history, and watchlists through the Integrate MCP server.

Installation

The eToro integration is included with the SDK:

import { etoroIntegration } from "integrate-sdk/server";

Setup

Add eToro to your server configuration. Provide credentials via environment variables or integration config:

import { createMCPServer, etoroIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    etoroIntegration({
      // See configuration options below
    }),
  ],
});

Client-Side Usage

import { client } from "integrate-sdk";

const result = await client.etoro.getIdentity({});

console.log(result);

Environment Variables

  • ETORO_API_KEY (when supported by this integration)

Configuration Options

Prop

Type

Tools

etoro_get_identity

Get identity

No parameters.

etoro_get_portfolio

Get portfolio

No parameters.

etoro_search_instruments

Search instruments

Prop

Type

etoro_get_instrument_rates

Get instrument rates

Prop

Type

etoro_list_trade_history

List trade history

Prop

Type

etoro_list_watchlists

List watchlists

Prop

Type

Notes

  • Category: Finance
  • Authentication mode: API key

On this page