← Back to MCP listView full setup guide →
§ Connection Config
Transport Type: remote
https://mcp.tickdb.ai/
X-TickDB-Key: {env:TICKDB_API_KEY}
§ Quickstart
Add the following to your MCP client configuration (Cursor, Claude Desktop, etc.):
Settings → Tools & MCP → New MCP Server. Replace YOUR_API_KEY with your TickDB key.
MCP Client Configuration
{
"mcpServers": {
"tickdb": {
"type": "streamableHttp",
"url": "https://mcp.tickdb.ai/",
"headers": {
"X-TickDB-Key": "YOUR_API_KEY"
}
}
}
}§ Tools Reference
5 tools
get_ticker
Real-time price snapshot
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | ✓ | Symbol |
get_kline
Historical K-line (OHLCV)
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | ✓ | Symbol |
| interval | string | — | Interval |
get_order_book
Order book depth
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | ✓ | Symbol |
get_market_metrics
PE/PB, market cap, capital flow metrics
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | ✓ | Stock symbol |
get_capital_flow
Large/medium/small order capital flow
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | ✓ | A-share symbol |
§ Examples
Once configured, you can ask the AI directly:
A-share snapshot
Get 600519 real-time quote with PE/PB
Combines get_ticker and get_market_metrics
Cross-asset
Compare latest K-lines for EURUSD and BTCUSDT
Unified cross-asset query
LadleAgent