股票量化价位分析MCP
该服务基于FastMCP框架构建,提供股票价格的量化分析能力。它为指定的股票计算Q级价格水平(保守级、正常级和极端级),以辅助投资决策。
MCP 服务配置
复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用
{
"mcpServers": {
"stock_quant_mcp": {
"modelName": "calculateQuantMcp",
"tools": {
"get_quant_price": {
"description": "u8ba1u7b97u80a1u7968u7684 Q u6c34u5e73u4ef7u683cu4f4duff08u4fddu5b88u4f4du3001u6b63u5e38u4f4du3001u6781u9650u4f4duff09",
"parameters": {
"symbol": {
"default": "000001.SZ",
"description": "u80a1u7968u4ee3u7801uff0cu683cu5f0fu5982'000858.SZ'u6216'000001.SH'",
"type": "string"
}
}
}
},
"type": "sse",
"url": "http://211.159.225.228:9000/sse"
}
}
}
服务介绍
Overview
This service is built based on the FastMCP framework, providing stock price quantitative analysis capabilities. It calculates Q-level price levels (conservative level, normal level, and extreme level) for specified stocks to assist investment decisions.
Server Information
Server Configuration
| Property | Value |
|---|---|
| Service Name | stock_quant_mcp |
| Communication Protocol | sse (Server-Sent Events) |
| Access URL | http://211.159.225.228:9000/sse |
| Model Identifier | calculateQuantMcp |
Tool Interface
get_quant_price
Functional Description
Calculates the Q-level price levels for a specified stock, including the following three key indicators:
- Conservative Level:
- Normal Level:
- Extreme Level:
(A denotes the lowest price, B denotes the highest price)
Parameter Definition
| Parameter Name | Type | Default Value | Description |
|---|---|---|---|
symbol |
string |
000001.SZ |
Stock code in formats like '000858.SZ' (Shenzhen Market/GEM) or '000001.SH' (Shanghai Market) |
Return Format
{
"保守位": "calculation result",
"正常位": "calculation result",
"极限位": "calculation result"
} ```