xRocket Exchange MCP
xRocket Exchange for agents
Unofficial, safety-first agent tooling for the xRocket Exchange API: one MCP server, one agent skill, and one Codex plugin bundle.
The default installation is intentionally public and read-only. Private account access and financial writes are available only in explicit local profiles, with separate feature gates and a prepare/execute approval flow. This project is not affiliated with, endorsed by, or operated by xRocket.
Connect in under a minute · Open xRocket · Official API overview · Coverage · Safety model · Legal review · Distribution status
What is included
Layer | Purpose | Default |
MCP server | Semantic tools over the official REST API |
|
Agent skill | Teaches agents safe discovery, analysis, approval, and reconciliation workflows | Read first; never infer write approval |
Codex plugin | Installs the server and skill together from a repo-local marketplace | Public tools only |
Registry metadata |
| Published in the Official MCP Registry |
Hosted endpoint | Public mainnet tools over Streamable HTTP | No install, token, or account access |
The API surface was re-audited on 2026-08-24 and still covers all 50 Exchange documentation pages, all 26 OpenAPI operations, and all 7 WebSocket channels. The four linked legal PDFs were reviewed separately on 2026-08-07. The current OpenAPI document has canonical SHA-256 5de074def6ee9f59c7c1d1a2f8a06e1f5e2fafb446ebef58af7168e32813e2a3. See the source inventory.
Related MCP server: tossinvest-openapi-mcp
Tool profiles
Profile | Tools | Token | Financial writes |
| 10 public market-data and onboarding tools | Not used | Impossible |
| Public tools plus 6 account/history tools | Required | Impossible |
| Public and private reads plus 8 prepare/execute write tools | Required | Still disabled until each feature gate is enabled |
For normal questions, xrocket_market_snapshot resolves a symbol or base asset and returns rules, ticker, best bid/ask, recent trades, fees, and an Open xRocket next action in one call. Private mode adds xrocket_account_overview for funding balances, trading balances, and active orders without inventing portfolio valuation. Narrow tools remain available for detailed queries. Full mode adds guarded order, cancel, internal-transfer, and withdrawal workflows.
Quick start — no installation
Open the zero-install connection page or add this URL to any MCP client that supports Streamable HTTP:
https://xrocket-mcp-production.up.railway.app/mcpGeneric client configuration:
{
"mcpServers": {
"xrocket": {
"url": "https://xrocket-mcp-production.up.railway.app/mcp"
}
}
}The hosted service is structurally limited to the 10 public mainnet tools. It never reads tokens, account data, or financial-write settings. Its health endpoint is /health.
For balances, order history, or guarded financial actions, use the local package below and authenticate only through your local process environment. Never paste an xRocket token into chat or send it to the hosted endpoint.
Local package
Requirements: Node.js 20 or newer. No clone or configuration is needed for public market data:
npx -y xrocket-mcp@0.4.0 doctor
npx -y xrocket-mcp@0.4.0 configThe second command prints this copy-paste MCP client configuration:
{
"mcpServers": {
"xrocket": {
"command": "npx",
"args": ["-y", "xrocket-mcp@0.4.0"],
"env": {
"XROCKET_ENVIRONMENT": "mainnet",
"XROCKET_ENABLE_TRADING": "false",
"XROCKET_ENABLE_TRANSFERS": "false",
"XROCKET_ENABLE_WITHDRAWALS": "false",
"XROCKET_ALLOW_MAINNET_WRITES": "false"
}
}
}
}The Codex bundle is described by plugins/xrocket-exchange/.codex-plugin/plugin.json, and its safe defaults are already set in plugins/xrocket-exchange/.mcp.json. Register this repository's marketplace, then install the all-in-one plugin:
codex plugin marketplace add nakazanie-ton/myrocket --ref main
codex plugin add xrocket-exchange@xrocket-agentsFor a local clone, replace the first command with codex plugin marketplace add /absolute/path/to/myrocket.
For source development:
git clone https://github.com/nakazanie-ton/myrocket.git
cd myrocket/plugins/xrocket-exchange
npm ci
npm test
npm run buildThe current package is xrocket-mcp@0.4.0.
Enabling private reads
Create a dedicated xRocket API bot token and pass it only through the process environment. With a token present, the profile defaults to private-read; an explicit profile is still respected:
export XROCKET_ENVIRONMENT=testnet
export XROCKET_API_TOKEN='replace-with-your-token'
node dist/cli.jsNever put the bearer token in a prompt, tool argument, committed MCP file, issue, or log. xRocket describes one broad bearer credential rather than fine-grained scopes, so treat it as full account access.
Enabling a write capability
full does not enable writes by itself. Enable only the capability you need:
export XROCKET_PROFILE=full
export XROCKET_ENVIRONMENT=testnet
export XROCKET_API_TOKEN='replace-with-your-token'
export XROCKET_ENABLE_TRADING=true
# XROCKET_ENABLE_TRANSFERS and XROCKET_ENABLE_WITHDRAWALS remain false
node dist/cli.jsEvery write is two-stage:
Call the matching
*_preparetool. It validates inputs, reads relevant limits/state, stores the exact prepared intent in server memory, and returns a short-lived approval receipt.Show the proposed action to the user and obtain explicit approval.
Call the matching
*_executetool once with only that receipt. The server retrieves the stored intent; the receipt is single-use and writes are never automatically retried.If the network outcome is ambiguous, reconcile by client identifier before considering any retry.
The receipt binds execution to the prepared payload, but it is not proof that a human approved it. Once a client exposes full execute tools and the corresponding gate is enabled, an agent can technically call them. Use a client with a trusted approval UI or an out-of-band operator policy; otherwise keep the execute capability disabled.
Mainnet writes additionally require XROCKET_ENVIRONMENT=mainnet and XROCKET_ALLOW_MAINNET_WRITES=true. See configuration and safety details.
Important API boundaries
The Exchange API has no deposit-address or create-deposit endpoint.
xrocket_onboarding_linksprovides the configured UI path; balances can be refreshed afterward.Exchange
POST /api/v1/accounts/transfersmoves funds only between the same user'sfundingandtradingaccounts. It is not a user-to-user payment tool.xRocket Pay is a different product, uses different authentication, and is outside this server.
The official API currently uses asset identifier
TONCOINin places where the UI may say TON.The 0.4.0 server uses REST snapshots. WebSocket channels are audited but not exposed until the upstream documentation defines reliable replay, gap recovery, and orderbook delta deletion semantics.
Decimal financial values remain strings. Do not coerce them through binary floating point.
Development
cd plugins/xrocket-exchange
npm ci
npm test
npm run typecheck
npm run build
npm pack --dry-runCI also checks the recorded documentation inventory and OpenAPI digest for drift. No live private credentials are used in tests.
Policy and support
This software can submit trades, transfers, and blockchain withdrawals when a local operator explicitly enables those capabilities. Review SECURITY.md, PRIVACY.md, TERMS.md, the project's legal and policy review, and xRocket's canonical terms and policies guide before use.
OpenAI's public plugin directory rules currently prohibit tools that execute investment trades, money transfers, or cryptocurrency transfers. The full profile is therefore not eligible for that public directory. Only the separately built hosted endpoint is a public-directory candidate; it contains no private or financial-write tool registrations.
Report defects through GitHub Issues. Report vulnerabilities privately as described in SECURITY.md.
This server cannot be installed
Maintenance
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceA portable MCP server that exposes Lighter trading to any MCP-capable agent with safety-first features like mode-based gating, two-step confirmations, and audit logging.1MIT
- AlicenseCqualityBmaintenanceSafe-by-default MCP server for the official Toss Securities Open API, providing read-only market and account data with optional order operations protected by multiple safety gates.27192MIT
- AlicenseAqualityBmaintenanceA Model Context Protocol server that gives any MCP client two economic-safety tools: realizable quote and pretrade check, paid per call in USDC with no accounts.2430MIT
- AlicenseNot gradedqualityBmaintenanceMCP server providing x402-paid tools for tokenized stock data on EVM chains, including premium/discount, liquidity, whale activity, and a guarded trading wrapper for Robinhood Chain.MIT
Related MCP Connectors
Read-only MCP server for Robinhood Chain token discovery, research, and due diligence via GMGN.
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
Hosted MCP server for live Bittensor chain reads and self-custodial on-chain writes.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nakazanie-ton/myrocket'
If you have feedback or need assistance with the MCP directory API, please join our Discord server