yellow-pro-mcp

yellow-pro-mcp

MCP server exposing the yellow_pro exchange to AI agents, providing market data, account state, and optional trading with read-only by default and rate limiting.

Category
访问服务器

README

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-code

The 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-mcp

The 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 client

npm 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/).

Configuration

Variable Required Default Description
YELLOW_PRO_BASE_URL no selected by YELLOW_PRO_SANDBOX Explicit REST base URL override
YELLOW_PRO_SANDBOX no false Exactly true uses staging (https://api.staging.yellow.pro.neodax.app); otherwise production (https://trade.api.yellow.pro)
YELLOW_PRO_API_KEY private tools API key
YELLOW_PRO_API_SECRET private tools API secret (HMAC-SHA256)
YELLOW_PRO_APP_SESSION_ID private tools app session id (uid credential)
YELLOW_PRO_ENABLE_TRADING no off exactly true to enable trading tools/commands
YELLOW_PRO_MODULES no all comma list of market,account,trading to filter tools
YELLOW_PRO_RATE_LIMIT_MS no 100 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_assets
  • account: 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_payments
  • trading (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: requires price
  • market: no price
  • post_only: requires price and guarantees the order is maker-only
  • trigger_limit (Stop Limit): requires both trigger_price and price
  • trigger_market (Stop Market): requires trigger_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, or claude mcp add directly) 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-mcp must be on the client's PATH. Check with which 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-mcp

Authentication 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=true keys do not work on production, and vice versa).
  • invalid_timestamp means the machine clock is more than a few seconds off the exchange's — sync it (e.g. sudo sntp -sS time.apple.com on macOS, chrony/ntp on 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=true against 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 build

The endpoint and request contracts follow the current yellow_pro API documentation. Not implemented on purpose: EIP-191/JWT auth and WebSocket streams.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选