> ## Documentation Index
> Fetch the complete documentation index at: https://api-portal.etoro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Antigravity

> Integrate eToro API documentation into Antigravity IDE

Antigravity is an agent-first IDE designed for autonomous execution and vibe coding. You can configure the eToro Documentation MCP to allow its agents to access our API references.

## Configuration

<Steps>
  <Step title="Locate MCP Configuration">
    Navigate to your home directory and find the `.antigravity` folder. Look for (or create) the `mcp_config.json` file.
  </Step>

  <Step title="Configure mcp_config.json">
    Paste the following configuration into the file:

    ```json theme={null}
    {
      "mcpServers": {
        "etoro-api-docs": {
          "url": "https://api-portal.etoro.com/mcp"
        }
      }
    }
    ```
  </Step>

  <Step title="Restart Antigravity">
    Restart the IDE to apply the changes.
  </Step>
</Steps>

## Usage

Once configured, you can issue natural language commands to your agents involving the eToro API.

**Examples:**

* "Create a Python script that connects to the eToro WebSocket API using the authentication method described in the docs."
* "Explain the JSON structure for a market order from the eToro API reference."

The agents will use the MCP connection to read the documentation and implement the requested features.
