Skip to main content
Glama
nakazanie-ton

xRocket Exchange MCP

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
XROCKET_PROFILENoAccess profile: 'public' exposes only unauthenticated market data tools, 'private-read' adds account reads (inferred when XROCKET_API_TOKEN is present), and 'full' includes autonomous trading and transfer/withdrawal workflows.
XROCKET_API_TOKENNoYour xRocket API token. It enables private-read (and potentially full) profiles. Never place this token in chat, logs, committed files, or the hosted endpoint.
XROCKET_ENVIRONMENTNoWhich xRocket environment to use. Mainnet writes also require XROCKET_ALLOW_MAINNET_WRITES=true.
XROCKET_ENABLE_TRADINGNoWrite gate for placing and canceling spot orders. Only effective in the full profile.false
XROCKET_ENABLE_TRANSFERSNoWrite gate for enabling transfers.false
XROCKET_ENABLE_WITHDRAWALSNoWrite gate for enabling withdrawals.false
XROCKET_ALLOW_MAINNET_WRITESNoMust be 'true' to allow any write operation on mainnet, in addition to the individual write gates.false

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

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
xrocket_market_snapshotA

Resolve an exact symbol or base asset and return market rules, ticker, best bid/ask, recent trades, and fees in one read-only call. Exact symbols win; ambiguous assets are never guessed.

xrocket_market_symbolsA

List all exchange symbols or inspect one exact symbol and its trading constraints.

xrocket_market_tickersB

Get public 24-hour ticker data, optionally for a repeated list of symbols.

xrocket_market_candlesA

Get public OHLCV candles for an exact ISO-8601 time window.

xrocket_market_orderbookB

Get a public order-book snapshot. Precision must be valid for the selected pair.

xrocket_market_tradesA

Get recent public trades for one symbol.

xrocket_asset_infoB

List public assets or inspect one exact asset identifier.

xrocket_ratesB

Get public crypto-asset rates in one fiat base currency.

xrocket_trade_feesA

Get exchange trade-fee data, optionally for repeated symbols.

xrocket_onboarding_linksA

Return xRocket sign-in links, the local autonomous trading setup, and canonical API documentation.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 10 tools

Disambiguation3/5

Most tools target distinct resources: symbols, tickers, candles, orderbook, trades, assets, fees, rates, and onboarding. The notable exception is xrocket_market_snapshot, which intentionally combines ticker/trades/fees/orderbook data into one call and creates selection ambiguity with the granular market tools.

Naming Consistency5/5

All tool names share the xrocket_ prefix and follow a consistent lowercase_snake_case resource pattern. The repeated xrocket_market_* grouping makes the public-market tools easily predictable, and the few non-market tools still follow the same naming convention.

Tool Count5/5

With 10 tools, the set is well-scoped for a public market-data and onboarding server. Each tool appears to earn its place, and the count is neither bloated nor too thin.

Completeness4/5

The surface fully covers a public exchange market-data workflow: symbols, tickers, candles, orderbook, trades, assets, rates, fees, and startup onboarding links. Private account and order-management tools are missing, but those appear out of scope for this read-only data and integration-link server.

Maintenance

ActivityMaintained
ResponsivenessNo issues