zoeasy-mcp
v1.0.0
Published
ZoEasy Product Documents MCP Server - AI-powered insurance product document search service
Maintainers
Readme
ZoEasy Product Documents MCP Server
基于 Model Context Protocol (MCP) 的保险产品文档搜索服务,为 AI 助手提供智能的产品文档检索能力。
快速开始
安装
yarn install
yarn build配置环境变量
创建 .env 文件:
ZOEASY_API_ENDPOINT=http://localhost:8000/api
ZOEASY_API_KEY=your-tools-api-key-here
REQUEST_TIMEOUT=30000运行
yarn start本地测试
yarn test:inspectorAI 客户端配置
Claude Code
在项目根目录创建或编辑 .mcp.json:
{
"mcpServers": {
"zoeasy-product-documents": {
"command": "npx",
"args": ["-y", "@mixmediahk/zoeasy-mcp"],
"env": {
"ZOEASY_API_ENDPOINT": "http://localhost:8000/api",
"ZOEASY_API_KEY": "your-api-key-here"
}
}
}
}OpenCode
在 OpenCode 配置文件中(如 .opencode/mcp.json),注意字段有所不同:
{
"mcp": {
"zoeasy-product-documents": {
"type": "local",
"command": ["npx", "-y", "@mixmediahk/zoeasy-mcp"],
"enabled": true,
"environment": {
"ZOEASY_API_ENDPOINT": "http://localhost:8000/api",
"ZOEASY_API_KEY": "your-api-key-here"
}
}
}
}开发
# 开发模式(监听文件变化)
yarn dev
# 构建生产版本
yarn build许可证
Apache-2.0
