TradeOS AI

by TradeOS-AI

299 downloads
Not rated
GitHub

About

Use TradeOS MCP Server to bring your trading data, indicators, strategy logic, and agent workflows into MCP-compatible AI tools. Copy your server URL, add it to GPT or Claude, and let your AI assistant work directly with your TradeOS trading intelligence.

Details

Author
TradeOS-AI
Downloads
299
Categories
Finance, Other, AI

- Analyze markets and search tickers from natural language
- Compare spreads and use macro context
- Manage custom trading agents via prompts
- Supports both HTTP (OAuth) and npm stdio (token) transports
- Production endpoint: https://ai.tradeos.xyz/api/agent/mcp/mcp-call
- Compatible with Cursor, Claude Code, and most MCP clients
- Windows-friendly setup with local install instructions

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name TradeOS AI
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Two modes are supported. HTTP (recommended): set the URL https://ai.tradeos.xyz/api/agent/mcp/mcp-call in your MCP client’s configuration (e.g., Cursor mcp.json); the client handles OAuth. npm stdio: install @tradeos/tradeos-mcp locally, run the OAuth helper to obtain a TRADEOS_ACCESS_TOKEN, then configure the client with the node command pointing to the bridge script and the token in env. Detailed steps for Cursor and Claude Code are provided in the README.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "tradeos ai": {
            "tradeos-mcp": {
                "command": "npx",
                "args": [
                    "-y",
                    "-p",
                    "@tradeos/tradeos-mcp",
                    "tradeos-mcp-oauth"
                ]
            }
        }
    }
}

McpServers

{
    "tradeos-mcp": {
        "command": "npx",
        "args": [
            "-y",
            "-p",
            "@tradeos/tradeos-mcp",
            "tradeos-mcp-oauth"
        ]
    }
}

tradeos-mcp

TradeOS MCP lets you connect TradeOS trading intelligence to MCP-compatible AI tools, so your assistant can analyze markets, search tickers, compare spreads, use macro context, and manage custom trading agents directly from natural-language prompts.

Overview

This repo publishes @tradeos/tradeos-mcp on npm: a stdio MCP bridge that proxies tools to TradeOS Streamable HTTP (mcp-call). You can connect in two ways:

| Mode | Best for | Auth |
| ---------------------- | ------------------------------------------- | ------------------------------ |
| HTTP (recommended) | Cursor, Claude Code, most MCP clients | Browser OAuth in the client |
| npm stdio | Clients that only support command / stdio | TRADEOS_ACCESS_TOKEN env var |

Production endpoint (both modes ultimately call this):

https://ai.tradeos.xyz/api/agent/mcp/mcp-call

Product docs: TradeOS MCP integration & usage

---

Prerequisites

- Node.js 18+
- A TradeOS account with MCP API access
- For npm stdio: ability to run a local install (see Windows notes)

---

Option A — HTTP (recommended)

No npm install. The client handles OAuth.

Cursor

Edit user config ~/.cursor/mcp.json (Windows: %USERPROFILE%\.cursor\mcp.json):

{
  "mcpServers": {
    "tradeos": {
      "url": "https://ai.tradeos.xyz/api/agent/mcp/mcp-call"
    }
  }
}

Save, restart Cursor (or refresh MCP in Settings → MCP), then complete OAuth when prompted.

Claude Code (plugin — recommended)

Use the bundled plugin in tradeos-skills/:

claude --plugin-dir ./tradeos-skills

Then complete OAuth and run /tradeos:analyze. Full plugin workflow (validate, community marketplace submit): tradeos-skills/README.md — aligned with Claude plugin docs.

---

Option B — npm stdio bridge

Use when your client requires a local process (command + stdio).

1. Install locally

Do not rely on npx inside MCP on Windows (cache/path issues). Install once to a fixed directory:

mkdir -p ~/tradeos-mcp-run   # Windows: mkdir %USERPROFILE%\Downloads\tradeos-mcp-run
cd ~/tradeos-mcp-run         # Windows: cd %USERPROFILE%\Downloads\tradeos-mcp-run
npm install @tradeos/tradeos-mcp

Pin a version if you prefer, e.g. @tradeos/tradeos-mcp@1.0.0.

2. Get TRADEOS_ACCESS_TOKEN

Run the OAuth helper (opens browser → log in on TradeOS → prints token):

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.