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., "@trading-mcpShow me the MACD and last 50 candlesticks for symbol 000001"
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.
trading-mcp
Foundational trading utilities powered by uv, pydantic, akshare, and TA-Lib.
Setup
Install dependencies with uv:
TA-Lib requires a native system library. Install it before syncing:
macOS:
brew install ta-libDebian/Ubuntu:
sudo apt-get install libta-lib0 libta-lib0-devWindows: use a prebuilt wheel for your Python version
Configuration
Settings are validated with pydantic and can be overridden via environment variables
using the TRADING_MCP_ prefix:
Usage
MCP Server
Start the MCP server with streamable HTTP transport:
Available tools:
kline(symbol, limit)→ OHLCV bar listmacd(symbol, limit, fast_period=12, slow_period=26, signal_period=9)→ MACD seriesrsi(symbol, limit, period=14)→ RSI seriesma(symbol, limit, period=20, ma_type="sma")→ moving average series