命理分析服务
可用工具 (7 个)
该服务在 MCP 协议中暴露的工具,AI 可按需调用
get_ziwei_chart 12 个参数 需填 3 项
必填参数:date、time_index、gender
get_ziwei_fortune 8 个参数 需填 3 项
必填参数:birth_date、time_index、gender
analyze_ziwei_palace 8 个参数 需填 4 项
必填参数:birth_date、time_index、gender、palace_name
list_fortune_systems 1 个参数
该工具无需必填参数,直接调用即可
get_bazi_chart 7 个参数 需填 3 项
必填参数:date、time_index、gender
get_bazi_fortune 8 个参数 需填 3 项
必填参数:birth_date、time_index、gender
analyze_bazi_element 7 个参数 需填 3 项
必填参数:birth_date、time_index、gender
服务介绍
命理分析服务 mingli
一个支持多种命理系统(紫微斗数、八字等)的MCP协议服务器,为AI工具提供命理分析与运势查询功能。
null## 工具列表 Tool List
本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。 本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。
| 工具 Tool | 描述 Description |
|---|---|
| get_ziwei_chart | 获取紫微斗数排盘信息,包含命盘十二宫、主星、辅星、四化等详细信息 |
| get_ziwei_fortune | 获取紫微斗数运势信息,包含大限、流年、流月、流日、流时的运势详情 |
| analyze_ziwei_palace | 分析紫微斗数特定宫位的详细信息 |
| list_fortune_systems | 列出所有可用的命理系统(紫微斗数、八字、占星等) |
| get_bazi_chart | 获取八字(四柱)排盘信息,包含年月日时四柱、十神、五行、地支藏干等详细信息 |
| get_bazi_fortune | 获取八字运势信息,包含大运、流年等详情 |
| analyze_bazi_element | 分析八字五行强弱,包含五行分数、平衡度、缺失五行等 |
检查服务 ## Inspector
工具在线测试: https://mcp.xiaobenyang.com/inspector/1777419070986243
Online Tool test https://mcp.xiaobenyang.com/inspector/1777419070986243
服务配置 MCP Server Config
如何获取 XBY-APIKEY ? How to get XBY-APIKEY ?
访问小笨羊科技网站 https://xiaobenyang.com,注册用户即可获得APIKEY
Visit XiaoBenYang website https://xiaobenyang.com, register and get the APIKEY.
SSE
{
"mcpServers": {
"命理分析服务": {
"headers": {
"XBY-APIKEY": "<YOUR_XBY_APIKEY>"
},
"type": "sse",
"url": "https://mcp.xiaobenyang.com/1777419070986243/sse"
}
}
}
STREAMABLE HTTP
{
"mcpServers": {
"命理分析服务": {
"headers": {
"XBY-APIKEY": "<YOUR_XBY_APIKEY>"
},
"type": "streamable_http",
"url": "https://mcp.xiaobenyang.com/1777419070986243/mcp"
}
}
}
STDIO
{
"mcpServers": {
"命理分析服务": {
"command": "npx",
"args": [
"-y",
"xiaobenyang-mcp"
],
"env": {
"XBY_APIKEY": "<YOUR_XBY_APIKEY>",
"mcpId": "1777419070986243",
},
"transport": "stdio"
}
}
}