Connects Claude to OKX's v5 public API for cryptocurrency market data. You get five tools: fetch trading instruments, pull tickers by instrument type, grab OHLC candles for charting, check historical funding rates for perpetual contracts, and query current mark prices. It's part of the Pipeworx gateway infrastructure, which means you can either point directly at the OKX endpoint or use their unified gateway that bundles 673+ data sources. Useful when you're building trading analysis workflows, need to compare crypto prices across instruments, or want to track funding rate patterns without writing API clients yourself. Runs over streamable HTTP, no local installation needed.
OKX v5 public MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
instruments | List instruments. |
tickers | Tickers by type. |
candles | OHLC candles. |
funding_rate_history | Historical funding rate. |
mark_price | Mark price. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"okx": {
"url": "https://gateway.pipeworx.io/okx/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Okx data" })
The gateway picks the right tool and fills the arguments automatically.
MIT