Openmm MCP Server

MCP server for OpenMM — exposes market data, account, trading, and strategy tools to AI agents

Remote serverstreamable-http

What is the Openmm MCP MCP server?

If you already use Openmm MCP, the openmm mcp mcp server is the piece that lets your assistant work with it directly. MCP server for OpenMM — exposes market data, account, trading, and strategy tools to AI agents.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • list_exchanges — List supported exchanges
  • get_ticker — Real-time price, bid/ask, spread, volume
  • get_orderbook — Order book depth (bids/asks)
  • get_trades — Recent trades with buy/sell summary
  • get_ohlcv — OHLCV candlestick data
  • Account — The Account tool exposed by this server
  • list_orders — Open orders (all or by symbol)
  • Trading — The Trading tool exposed by this server
  • cancel_order — Cancel order by ID
  • cancel_all_orders — Cancel all orders for a pair
  • get_cardano_price — Aggregated token price from DEXes
  • discover_pools — Discover liquidity pools

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Credentials and setup notes

Configuration is passed through the environment: MCP_TRANSPORT, OPENMM_SOCKET, PAYMENT_SERVER, X402_TESTNET, MEXC_API_KEY, MEXC_SECRET. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Where it fits

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Openmm MCP's toolset — list_exchanges, get_ticker, get_orderbook and 11 more — is a fair guide to whether it matches your workflow. It is maintained by qbt-labs; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Openmm MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Openmm MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
list_exchangesList supported exchanges
get_tickerReal-time price, bid/ask, spread, volume
get_orderbookOrder book depth (bids/asks)
get_tradesRecent trades with buy/sell summary
get_ohlcvOHLCV candlestick data
AccountThe Account tool exposed by this server.
list_ordersOpen orders (all or by symbol)
TradingThe Trading tool exposed by this server.
cancel_orderCancel order by ID
cancel_all_ordersCancel all orders for a pair
get_cardano_priceAggregated token price from DEXes
discover_poolsDiscover liquidity pools
StrategyThe Strategy tool exposed by this server.
stop_strategyStop a running strategy

How to install the Openmm MCP MCP server

{
  "mcpServers": {
    "openmm": {
      "command": "npx",
      "args": ["-y", "@qbtlabs/openmm-mcp"],
      "env": {
        "MCP_TRANSPORT": "your-value",
        "OPENMM_SOCKET": "your-value",
        "PAYMENT_SERVER": "your-value",
        "X402_TESTNET": "your-value",
        "MEXC_API_KEY": "your-value",
        "MEXC_SECRET": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
MCP_TRANSPORTConfiguration value read at startup.Optional
OPENMM_SOCKETConfiguration value read at startup.Optional
PAYMENT_SERVERConfiguration value read at startup.Optional
X402_TESTNETConfiguration value read at startup.Optional
MEXC_API_KEYCredential the server authenticates with.Yes
MEXC_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use Openmm MCP to list exchanges.
  • Use Openmm MCP to get ticker.
  • Use Openmm MCP to get orderbook.

Frequently asked questions

It connects Openmm MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (list_exchanges, get_ticker, get_orderbook, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Openmm MCP directly.