yellow-pro-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@yellow-pro-mcpshow me the order book for BTCUSDT-PERP"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
yellow-pro-mcp
English | 简体中文
MCP server + CLI exposing the yellow_pro exchange to AI agents — Claude Code, Codex CLI, OpenClaw, Cursor, or any MCP client. Market data, account state, and (when explicitly enabled) trading.
Follows the same conventions as the official OKX / Bybit / Alpaca exchange MCP servers: local stdio process, credentials stay on your machine (environment variables or your MCP client's local config — never sent anywhere else), read-only by default, module filtering, built-in rate limiting, plus a CLI and an agent skill file for non-MCP agents.
One-liner install (for agents and humans)
Install from GitHub and register with Claude Code:
curl -fsSL -H 'Accept: application/vnd.github.raw+json' \
'https://api.github.com/repos/layer-3/yellow-pro-mcp/contents/install.sh?ref=main' | bash && \
YELLOW_PRO_API_KEY=... YELLOW_PRO_API_SECRET=... YELLOW_PRO_APP_SESSION_ID=... \
yellow-pro setup claude-codeThe installer checks Node.js >= 18, builds in a temporary directory, installs a
packed tarball globally, and removes the temporary files. If the system npm
prefix is not writable, it installs under ~/.local instead. Inspect
install.sh before running it if your environment does not permit curl | bash.
Then register any MCP client with the installed server, for example Claude Code:
claude mcp add yellow_pro -s user \
-e YELLOW_PRO_API_KEY=... -e YELLOW_PRO_API_SECRET=... -e YELLOW_PRO_APP_SESSION_ID=... \
-- yellow-pro-mcpThe repo is public, so installation does not require GitHub credentials.
Multi-client setup — each registers the MCP server using your current
YELLOW_PRO_* environment:
yellow-pro setup claude-code # via `claude mcp add` (user scope)
yellow-pro setup codex # via `codex mcp add`, falls back to config.toml snippet
yellow-pro setup openclaw # writes ~/.openclaw/openclaw.json mcpServers entry
yellow-pro setup hermes # via `hermes mcp add`, falls back to config.yaml snippet
yellow-pro setup json # prints generic MCP JSON for any other clientnpm i -g (or a local checkout: npm i -g /path/to/yellow_pro_mcp) gives you two
commands: yellow-pro-mcp (MCP server) and yellow-pro (CLI).
Manual config (any MCP client)
# Codex CLI (~/.codex/config.toml)
[mcp_servers.yellow_pro]
command = "yellow-pro-mcp"
env = { YELLOW_PRO_API_KEY = "...", YELLOW_PRO_API_SECRET = "...", YELLOW_PRO_APP_SESSION_ID = "..." }// OpenClaw (~/.openclaw/openclaw.json), Claude Desktop, Cursor, ...
{ "mcpServers": { "yellow_pro": { "command": "yellow-pro-mcp", "env": { "YELLOW_PRO_API_KEY": "..." } } } }Agent skill (non-MCP agents)
skills/yellow-pro/SKILL.md teaches agents to use the yellow-pro CLI — copy it
into your agent's skills directory (e.g. ~/.claude/skills/yellow-pro/).
Related MCP server: hyperliquid-mcp
Configuration
Variable | Required | Default | Description |
| no | selected by | Explicit REST base URL override |
| no |
| Exactly |
| private tools | — | API key |
| private tools | — | API secret (HMAC-SHA256) |
| private tools | — | app session id ( |
| no | off | exactly |
| no | all | comma list of |
| no |
| min gap between requests (ms) |
Trading tools are not registered unless YELLOW_PRO_ENABLE_TRADING=true.
Market data tools work without credentials.
An explicit YELLOW_PRO_BASE_URL takes precedence over sandbox mode.
Tools
market:
get_health,get_markets,get_ticker,get_orderbook,get_klines,get_funding_rate,get_funding_rate_history,get_networks,get_transfer_assetsaccount:
get_balance,get_open_orders,get_order_history,get_my_trades,get_positions,get_position_history,get_position_history_detail,get_spot_accounts,get_spot_account,get_perpetual_accounts,get_fee_schedule,get_fee_tier,get_market_fee_rate,get_transaction_history,get_funding_paymentstrading (opt-in):
place_order,cancel_order,cancel_all_orders,close_positions,set_leverage,transfer
Markets use native ids: spot ETHUSDT, perpetual BTCUSDT-PERP.
Amounts and prices are decimal strings. All results are raw exchange JSON.
place_order supports the same common single-order types for Spot and Perpetual:
limit: requirespricemarket: nopricepost_only: requirespriceand guarantees the order is maker-onlytrigger_limit(Stop Limit): requires bothtrigger_priceandpricetrigger_market(Stop Market): requirestrigger_price
Perpetual trigger orders also accept the optional trigger_type value
stop_loss or take_profit. Order queries return the classified conditional
type, such as stop_limit, stop_loss, take_limit, or take_profit.
cancel_order accepts either the request type (trigger_*) or these returned
types and normalizes Spot cancellation.
Most list tools use the documented opt-in cursor protocol. Omit cursor for
the first request; the MCP sends use_cursor=true. Pass the returned
next_cursor to fetch the next page. page_size defaults to 50 and is capped
at 100. Fill-level position history is cursor-native: its first request omits
both cursor and use_cursor, and its documented page_size maximum is 500.
The yellow-pro CLI mirrors the same surface — yellow-pro --help.
Troubleshooting
MCP client shows no tools / server fails to connect
Register through the CLI (
yellow-pro setup claude-code, orclaude mcp adddirectly) rather than editing config files by hand — Claude Code reads MCP config from~/.claude.json, not~/.claude/settings.json.The client spawns the server without loading your shell profile, so
yellow-pro-mcpmust be on the client'sPATH. Check withwhich yellow-pro-mcp; if the installer printed a PATH hint, add that directory to your profile and restart the client.Restart the client after changing MCP config — servers connect at session start.
Verify the server itself starts:
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}' | yellow-pro-mcpAuthentication errors (invalid_api_key, invalid_timestamp)
Private tools need all three of
YELLOW_PRO_API_KEY,YELLOW_PRO_API_SECRET,YELLOW_PRO_APP_SESSION_ID, and they must match the environment you are hitting (YELLOW_PRO_SANDBOX=truekeys do not work on production, and vice versa).invalid_timestampmeans the machine clock is more than a few seconds off the exchange's — sync it (e.g.sudo sntp -sS time.apple.comon macOS,chrony/ntpon Linux).
Trading commands fail with "trading is disabled"
Set YELLOW_PRO_ENABLE_TRADING=true in the MCP client's env config. This is
intentional — do not work around it by calling the REST API directly.
Risk warning
Trading involves risk of loss. Before use:
Protect your credentials — grant API keys the minimum permissions needed and never commit them to source control.
Test on staging first — run with
YELLOW_PRO_SANDBOX=trueagainst the staging environment before pointing at production.Trading is off by default — order/placement tools only exist when
YELLOW_PRO_ENABLE_TRADING=true. Review every order the agent proposes before letting it through.You are in control — all actions are initiated by you or your AI assistant; the maintainers are not responsible for losses from agent behavior.
Development
npm install
npm test # signature vectors (cross-checked against the reference impl) + tool registration
npm run buildThe endpoint and request contracts follow the current yellow_pro API documentation. Not implemented on purpose: EIP-191/JWT auth and WebSocket streams.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/layer-3/yellow-pro-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server