Step-by-step guide

Connecting Claude to your trading account via Elirox

By the end of this guide you'll be able to talk to Claude in plain language, and it will open trades, calculate risk and analyze your trading history right on your live account.

Takes
20–25 minutes
You'll need
A computer and email
Programs
3 free, installed in 5 min

How it works

Claude is the brain

Anthropic's AI that you talk to in plain language.

Elirox is the hands

The platform that takes Claude's commands and actually executes them at your broker.

The MCP bridge between them

Without it Claude can't see your account and Elirox can't understand commands. That's what we're about to connect.

0

Register with Elirox

Create an account and connect a partner broker.

Register with Elirox via the link:

Register with Elirox →

Standard registration: email and password.

Choosing a partner broker

Elirox works free with XM and Exness. Other brokers work too, but via an Elirox subscription.

If you already have an XM or Exness account

  1. After registering, go to the Accounts section.
  2. Click Connect a trading account.
  3. Select your broker and follow the prompts.

Connecting takes 3 minutes.

Screenshot 1Step 0 · connecting the broker
Elirox dashboard, Accounts section, Connect a trading account button
In the Elirox dashboard, under Accounts, click "Connect a trading account" and select your broker.

If you don't have an XM or Exness account yet

A demo opens in 2 minutes, and the pairing works great on demo.

If you use a different broker

We recommend opening a demo at XM or Exness first to test the pairing without a subscription. If you decide to stay with your current broker, Elirox supports it on a paid subscription.

Prefer guided steps? Get this guide in our Telegram →
We'll walk you through it and answer questions — a real person replies.

What to install on your computer

Your account is ready. Now three free programs for the pairing. If you already have one — skip it.

1. Claude Desktop

The app where you'll chat with Claude.

claude.ai/download →

2. Node.js

A technical "layer" Claude uses to talk to Elirox. Just install it and forget — you won't need it again.

nodejs.org → — pick the LTS version, it's the green one on the site.

3. Postman

The app where you'll get your access key (a one-time step).

postman.com/downloads →

⚠️
After installing Node.js, restart your computer. Otherwise Claude won't see Node.js and the connection won't work. This is the only time a restart is needed — everything works without one afterwards.
1

Download the Postman collection

A ready-made file with all the requests to get your API key.

Download the collection file — you'll need it on the next step:

↓ Download collection Postman

💡
What is this, anyway. Postman is a program you'll use to get an Elirox API key for connecting Claude. A one-time step. After that you won't need Postman.
2

Import the collection into Postman

Loading the ready-made requests into the app.

  1. Open Postman.
  2. Click Import in the top-left corner.
  3. Drag the collection file into the import window.

After importing, the "Elirox Public API — MCP onboarding" collection appears with four requests.

Screenshot 2Step 2 · importing the collection
Postman with the imported Elirox Public API collection
After importing, the "Elirox Public API — MCP onboarding" collection appears in the sidebar with four requests.

The base URL, variables and automatic token passing are already configured inside — nothing to enter manually.

3

Create your API key

4 requests in order. Each one uses data from the previous.

3.1 · Register

This request creates your Elirox API account and automatically opens a demo account.

  1. Open the Register request in the sidebar.
  2. Go to the Body tab.
  3. In the email and password fields enter the same details you used when registering in Step 0.
  4. Click Send in the top-right corner.
Screenshot 3Step 3.1 · the Register request
Register request in Postman with email and password fields
Open the Register request, on the Body tab enter email and password, click Send.

In the response at the bottom you should see the created user's data.

3.2 · List accounts

Checks that your demo account was created correctly.

  1. Open the List accounts request.
  2. Just click Send — nothing to enter.

The response shows information about your demo account.

3.3 · Create key

Generates the API key Claude uses to connect to Elirox.

  1. Open the Create key request.
  2. Click Send.
  3. In the response find the apiKey field — that's your key.
  4. Copy the apiKey value and keep it safe. You'll need it on the next step.
Screenshot 4Step 3.3 · API key in the response
Create API key response with the apiKey field
In the Create key response find the apiKey field and copy its value — you'll need it in Step 4.
⚠️
Never publish this key or share it with anyone. It grants access to trading operations on your account.
ℹ️
The Login request is there in case you need to sign in again later. Skip it for now. The key is valid for 1 month. After it expires, create a new one via the same Create key.
4

Connect MCP to Claude

Pasting the API key into Claude Desktop config.

4.1 · Open the config file

  1. Launch Claude Desktop.
  2. Go to Settings → Developer → Edit Config.
  3. The claude_desktop_config.json file opens in an editor.
Screenshot 5Step 4.1 · open the config
Claude Desktop Settings Developer, Edit Config button
In Claude Desktop go to Settings → Developer and click Edit Config. After connecting, the elirox server will show here with a running status.
💡
Before editing — make a copy of the file. Copy it and rename to claude_desktop_config_backup.json. If something goes wrong, you can restore it in a second.

4.2 · Paste the config block

Copy the block below for your operating system, replace <YOUR_API_KEY> with the key from Step 3, and paste it into the file.

JSON macOS / Linux
{
  "mcpServers": {
    "elirox": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://app.elxapi.com/public/v1/mcp",
        "--header",
        "X-API-Key: <YOUR_API_KEY>"
      ]
    }
  }
}
JSON Windows
{
  "mcpServers": {
    "elirox": {
      "command": "cmd",
      "args": [
        "/c",
        "npx",
        "-y",
        "mcp-remote",
        "https://app.elxapi.com/public/v1/mcp",
        "--header",
        "X-API-Key: <YOUR_API_KEY>"
      ]
    }
  }
}
If everything is pasted correctly, after restarting Claude this server will appear in Settings → Developer with a running status — like in the screenshot above.

If the file already has other MCP servers — add elirox inside the existing mcpServers block, remembering the comma before it:

JSON If other servers exist
{
  "mcpServers": {
    "other_server": { ... },
    "elirox": { ... }
  }
}

4.3 · Restart Claude Desktop

Save the file and fully quit Claude Desktop (not minimize — quit completely: Cmd+Q on Mac, or File → Exit on Windows). Then open it again.

4.4 · Check the connection

Type in Claude:

Show my Elirox account

If the pairing works, Claude will call the MCP tools and return your account data.

Screenshot 6Step 4.4 · the pairing works
Claude returns Elirox account data, status Active
To "Show my Elirox account" Claude returns balance, equity and status Active · Trading allowed — the pairing works.
🆘 Stuck on Postman or the config? Message us on Telegram →
We'll help you sort it out personally. A real person replies, usually within an hour.
5

Add the Elirox Bot Manager skill

Rules for safely managing trading bots through Claude.

The skill contains safety rules:

  • viewing the account and limits
  • launching DCA and GRID bots
  • stopping bots only on your explicit confirmation

Installing the skill

↓ Download SKILL.md

  1. In Claude Desktop go to Settings → Capabilities → Skills.
  2. Click + (Add skill) and select the downloaded SKILL.md file.
  3. Make sure the skill is enabled (the toggle in the top-right is active).
Screenshot 7Step 5 · installing the skill
Skills section in Claude Desktop with elirox-bot-manager added
In the Skills section click +, add the SKILL.md file and make sure the toggle in the top-right is on.

Check

Type to Claude:

Show my active Elirox robots and my limits

If it all works, Claude will show active bots and your current account limits.

What to try next

The pairing works. A few commands to start with.

Show my balance and open positionsSee your account status Analyze my trades for the last 30 daysYour first trading-history review Launch the AlgoGold DCA presetLaunch a ready-made strategy

Detailed video lessons on each feature are in a private Telegram channel. Entry via the bot for those who connected.

🎉 Connected? Grab an invite to the private channel →
Videos on every feature, live breakdowns and the host trading in real time.
ℹ️
All of Claude's actions run on your live account. You can check them anytime in the Elirox dashboard at app.elirox.com — sign in with the same email and password you used to register.

If something didn't work

Top 5 issues and fixes. If none fit — message us on Telegram.

Claude doesn't see the MCP server elirox
Did you fully quit Claude, not just minimize? Quit via Cmd+Q (Mac) or File → Exit (Windows) and reopen.
spawn npx ENOENT error in the logs
Node.js isn't installed or isn't visible to the system. Install Node.js (see the start of this guide), restart your computer. To check, run npx -v in the terminal — it should print a version.
«Invalid API key»
The key is expired or copied with a space. Create a new one via Postman (Step 3.3).
Error in the Claude config
Almost always a broken comma or bracket. Check the file against the example in Step 4.2, or restore from your backup and redo Step 4.
Can't connect the broker
Make sure you're entering your MT5 account details from the broker, not your broker portal login.

Nothing worked?

Message us on Telegram. We'll help you personally and reply within a day.

Message us on Telegram →