OKX MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OKX_API_KEY | No | Your OKX API key (optional, only needed for authenticated endpoints) | |
| OKX_API_SECRET | No | Your OKX API secret (optional, only needed for authenticated endpoints) | |
| OKX_API_PASSPHRASE | No | Your OKX API passphrase (optional, only needed for authenticated endpoints) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_priceC | Get latest price for an OKX instrument with formatted visualization |
| get_candlesticksC | Get candlestick data for an OKX instrument with visualization options |
| subscribe_tickerC | Subscribe to real-time ticker updates for an instrument |
| get_live_tickerC | Get the latest ticker data from WebSocket subscription |
| unsubscribe_tickerC | Unsubscribe from real-time ticker updates for an instrument |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
The tools are mostly distinct with clear purposes: get_candlesticks for historical data, get_live_ticker for real-time data, get_price for current price, and subscribe/unsubscribe_ticker for WebSocket management. However, get_live_ticker and get_price could be confused as both provide current price information, though one is WebSocket-based and the other is a simple fetch.
All tool names follow a consistent verb_noun pattern with snake_case, such as get_candlesticks, get_live_ticker, and subscribe_ticker. This predictability makes it easy for an agent to understand and use the tools without confusion.
With 5 tools, the server is well-scoped for its purpose of providing OKX market data and real-time updates. Each tool serves a specific function, and there are no redundant or unnecessary additions, making the count appropriate for the domain.
The toolset covers core market data operations well, including historical data, real-time updates, and subscription management. A minor gap exists in the lack of tools for order placement or account management, but for a data-focused server, the coverage is sufficient for typical agent workflows.