cn.whylingxi/insurance
Official9 toolsby lpb123
WhyLingxi 保险顾问 Insurance Advisor
保险产品搜索、推荐、保费试算、核保预检。覆盖65家保司483款产品。China insurance MCP server.
Search, compare, and calculate premiums for 483 insurance products from 65 insurers.
Captured live from the server via tools/list.
get_schema
获取调用策略和字段优先级。调用流程:(1)收集用户age后即可调recommend(2)有health_conditions时自动附带核保结论(3)include_reasoning默认false,Agent自行组织语言(4)返回的source_url可直接给用户作为投保链接。本工具返回各能力的字段优先级、缺失影响、默认行为。
Parameters (1)
- capabilitystring
想了解哪个能力,不传则返回全部
search_products
按条件搜索保险产品,返回结构化JSON列表。支持按险种、年龄、预算、关键词筛选。
Parameters (5)
- categorystring
险种:医疗险/重疾险/意外险/定期寿险/终身寿险/年金险/旅游险/团险
- ageinteger
被保险人年龄
- budgetnumber
年预算上限(元)
- keywordstring
产品名或保险公司关键词
- limitinteger
最多返回条数,默认10
get_product_detail
获取单个产品的结构化信息。compact=true时只返回摘要字段,适合Agent快速浏览;默认返回完整信息含条款详情。
Parameters (2)
- product_idintegerrequired
产品ID
- compactboolean
精简模式:只返回核心字段+coverage前8项摘要,省略条款/FAQ详情
compare_products
对比2-5款产品的关键维度(保费、保障、免赔额、续保等),返回结构化对比表。
Parameters (3)
- product_idsarrayrequired
产品ID列表(2-5个)
- ageinteger
用于查询精确保费的年龄
- genderstring
用于查询精确保费的性别
recommend
根据用户画像推荐保险方案(核心工具)。信息不全也可调用——返回最佳推荐+缺失字段提示。传入health_conditions自动附带核保结论。默认纯数据模式(<100ms),设include_reasoning:true生成自然语言理由(+3s)。
Parameters (10)
- ageintegerrequired
年龄(必填)
- genderstring
- budgetnumber
年预算(元)
- needsarray
需求列表,如["重疾保障","医疗报销","意外防护"]
- family_rolestring
被保人角色
- health_conditionsarray
既往症,如["高血压2级","甲状腺结节"]
- has_social_securityboolean
是否有社保
- occupation_classinteger
职业类别(1-6类)
- existing_coveragearray
已有保障,如["百万医疗","意外险"]
- include_reasoningboolean
是否生成LLM推荐理由(默认false,Agent调用无需开启;设true适用于直接面向人类展示)
get_premium
查询指定产品在特定年龄/性别下的精确保费数据。
Parameters (3)
- product_idintegerrequired
产品ID
- ageintegerrequired
年龄
- genderstring
answer_question
回答保险知识问题。默认返回知识库检索结果;传synthesize:true可获得LLM整合答案。
Parameters (3)
- questionstringrequired
问题
- product_idinteger
(可选)针对某款产品的问题
- synthesizeboolean
是否调LLM整合答案(默认false,纯检索模式更快)
check_underwriting
核保预判:根据用户健康状况,评估各产品的可投保性(可正常投保/需加费除外/可能拒保)。
Parameters (4)
- health_conditionsarrayrequired
健康状况列表,如["高血压2级","甲状腺结节3类","乙肝小三阳"]
- ageinteger
年龄(影响可选产品范围)
- categorystring
想投保的险种(不传则评估医疗+重疾+意外+定寿)
- product_idsarray
指定产品ID列表(不传则自动选取各险种Top产品评估)
chat
自然语言多轮对话(适合信息不确定、需要引导的场景,或人类用户直接使用)。
Parameters (2)
- messagestringrequired
用户消息
- session_idstring
会话ID,传入可保持多轮对话上下文
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"insurance": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://whylingxi.cn/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.