通过 MBE MCP Server,几行代码即可让你的 AI 应用调用法律、财务、保险、教育等
20+ 领域专家能力。标准 Model Context Protocol (JSON-RPC),即插即用。
MCP (Model Context Protocol) 是开放标准。JSON-RPC over stdio,与 Claude、GPT、任何 LLM 兼容。
不只是 API 调用——背后有经过结构化的法规、准则、临床指南、定额标准,每个回答可溯源。
税费、诉讼费、临床评分、保费测算——这些不该让 LLM 瞎猜,MBE 用规则引擎精确计算。
咨询类 ¥0,计算类 ¥0.5-5/次,审查类 ¥30/份。只为完成的任务付费,没有月费。
# Python — 调用 MBE 法律专家
import json, subprocess
proc = subprocess.Popen(
["python", "-m", "mbe_mcp_server"],
stdin=subprocess.PIPE, stdout=subprocess.PIPE
)
request = {
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "legal_consult",
"arguments": {
"question": "劳动合同到期不续签,补偿金怎么算?"
}
},
"id": 1
}
proc.stdin.write(json.dumps(request).encode() + b"\n")
proc.stdin.flush()
result = json.loads(proc.stdout.readline())
print(result["result"]["content"])