Server data from the Official MCP Registry
保险产品搜索、推荐、保费试算、核保预检。覆盖65家保司483款产品。China insurance MCP server.
保险产品搜索、推荐、保费试算、核保预检。覆盖65家保司483款产品。China insurance MCP server.
Remote endpoints: streamable-http: https://whylingxi.cn/mcp
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.
Endpoint verified · Open access · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"cn-whylingxi-insurance": {
"url": "https://whylingxi.cn/mcp"
}
}
}From the project's GitHub README.
保险产品智能顾问 MCP 服务器 —— 支持保险产品搜索、个性化推荐、保费试算、核保预检。
覆盖 65 家保司 | 483 款在售产品 | 8 大险种 | 实时报价
| 协议 | 地址 | 说明 |
|---|---|---|
| MCP (Streamable HTTP) | https://whylingxi.cn/mcp | 9 个结构化工具,供 AI Agent 直接调用 |
| A2A (Google Agent-to-Agent) | https://whylingxi.cn/a2a | 支持自然语言和结构化数据两种模式 |
| OpenAI 兼容接口 | https://whylingxi.cn/v1/chat/completions | 可直接替代 OpenAI API |
| REST Chat | https://whylingxi.cn/chat | 多轮对话 |
| Agent Card | https://whylingxi.cn/.well-known/agent.json | A2A 协议发现入口 |
| OpenAPI | https://whylingxi.cn/openapi.json | 完整 API 规范 |
| 工具名 | 功能 |
|---|---|
get_schema | 获取所有工具的参数和返回值说明 |
search_products | 按险种/关键词/年龄/预算搜索产品 |
get_product_detail | 获取产品完整信息(保障责任、FAQ等) |
compare_products | 多款产品对比(2-5款) |
recommend | 根据年龄/性别/预算/需求生成个性化方案 |
get_premium | 精确保费查询(按年龄/性别/计划) |
answer_question | 保险知识问答 |
check_underwriting | 健康条件核保预检 |
chat | 多轮自然语言对话 |
import OpenAI from 'openai';
const openai = new OpenAI();
const response = await openai.responses.create({
model: 'gpt-4o',
tools: [{
type: 'mcp',
server_label: 'insurance',
server_url: 'https://whylingxi.cn/mcp',
require_approval: 'never'
}],
input: '30岁男性,预算5000元,推荐保险方案'
});
console.log(response.output_text);
# 搜索产品
curl -X POST https://whylingxi.cn/mcp \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "search_products",
"arguments": {"category": "医疗险", "age": 30}
}
}'
# 获取推荐方案
curl -X POST https://whylingxi.cn/mcp \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "recommend",
"arguments": {"age": 30, "gender": "男", "budget": 5000, "needs": ["医疗报销", "重疾保障", "意外防护"]}
}
}'
import requests
resp = requests.post('https://whylingxi.cn/mcp', json={
'jsonrpc': '2.0',
'id': 1,
'method': 'tools/call',
'params': {
'name': 'recommend',
'arguments': {'age': 35, 'gender': '女', 'needs': ['医疗报销', '重疾保障']}
}
})
result = resp.json()['result']['content'][0]['text']
print(result)
医疗险 | 重疾险 | 意外险 | 定期寿险 | 终身寿险 | 年金险 | 旅游险 | 团险
Remote MCP server for insurance product search, recommendation, premium calculation, and underwriting pre-check in China.
65 insurers | 483 products | 8 categories | Real-time pricing
| Protocol | URL | Description |
|---|---|---|
| MCP (Streamable HTTP) | https://whylingxi.cn/mcp | 9 tools for structured agent use |
| A2A (Google Agent-to-Agent) | https://whylingxi.cn/a2a | Text + data modes |
| OpenAI-compatible | https://whylingxi.cn/v1/chat/completions | Drop-in replacement |
| REST Chat | https://whylingxi.cn/chat | Multi-turn natural language |
| Agent Card | https://whylingxi.cn/.well-known/agent.json | A2A discovery |
| OpenAPI | https://whylingxi.cn/openapi.json | Full API spec |
| Tool | Description |
|---|---|
get_schema | Discover capabilities and field requirements |
search_products | Search by category/keyword/age/budget |
get_product_detail | Full product info with coverage and FAQ |
compare_products | Side-by-side comparison (2-5 products) |
recommend | Personalized plan based on user profile |
get_premium | Exact premium by age/gender/plan |
answer_question | Insurance knowledge Q&A |
check_underwriting | Health condition pre-assessment |
chat | Multi-turn natural language conversation |
import OpenAI from 'openai';
const openai = new OpenAI();
const response = await openai.responses.create({
model: 'gpt-4o',
tools: [{
type: 'mcp',
server_label: 'insurance',
server_url: 'https://whylingxi.cn/mcp',
require_approval: 'never'
}],
input: '30岁男性,预算5000元,推荐保险方案'
});
console.log(response.output_text);
# Search products
curl -X POST https://whylingxi.cn/mcp \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "search_products",
"arguments": {"category": "医疗险", "age": 30}
}
}'
import requests
resp = requests.post('https://whylingxi.cn/mcp', json={
'jsonrpc': '2.0',
'id': 1,
'method': 'tools/call',
'params': {
'name': 'recommend',
'arguments': {'age': 35, 'gender': '女', 'needs': ['医疗报销', '重疾保障']}
}
})
result = resp.json()['result']['content'][0]['text']
print(result)
医疗险 (Medical) | 重疾险 (Critical Illness) | 意外险 (Accident) | 定期寿险 (Term Life) | 终身寿险 (Whole Life) | 年金险 (Annuity) | 旅游险 (Travel) | 团险 (Group)
curl https://whylingxi.cn/health
# {"status":"ok","products":483,"insurers":65,"categories":10,...}
This repository contains documentation and examples only. The MCP server is a hosted service at whylingxi.cn.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.