Skip to main content
Glama
manolaz

Emergency Medicare Planner MCP Server

by manolaz

紧急医疗保险管理 MCP 服务器

铁匠徽章

(@manolaz/emergency-medicare-planner-mcp-server)

强大的模型上下文协议 (MCP) 服务器与 Google 地图集成,用于在紧急情况下定位和评估医疗设施。该服务器可帮助用户根据具体的医疗需求、紧急程度和设施能力,在 10 公里半径范围内找到合适的医院和诊所。

该系统提供实时路线、可用性检查和有关医疗服务的详细信息,帮助患者在紧急医疗情况下做出明智的决定。

主要特点:医疗评估的顺序思维——能够根据患者症状和病史进行逐步的临床推理,从而更准确地匹配医疗设施。

安装和使用

通过 Smithery 安装

要自动安装 Claude Desktop 的紧急医疗保险计划器:

npx -y @smithery/cli install @manolaz/emergency-medicare-planner-mcp-server --client claude

手动安装

# Using npx (recommended) npx @manolaz/emergency-medicare-planner-mcp-server # With environment variable for Google Maps API GOOGLE_MAPS_API_KEY=your_api_key npx @manolaz/emergency-medicare-planner-mcp-server

或者全局安装:

# Install globally npm install -g @manolaz/emergency-medicare-planner-mcp-server # Run after global installation GOOGLE_MAPS_API_KEY=your_api_key emergency-medicare-planner-mcp-server

Related MCP server: Google Maps MCP Server

成分

工具

  • 搜索医疗设施

    • 使用 Google Places API 搜索医院、诊所和医疗机构

    • 输入:

      • query (字符串):搜索查询(例如,“急诊室”,“儿科诊所”)

      • location :患者所在位置的经纬度

      • radius (可选,默认值:10000):以米为单位的搜索半径

      • specialtyNeeded (可选):所需医学专业

  • 获取医疗设施详情

    • 获取有关特定医疗机构的详细信息

    • 输入:

      • placeId (字符串):医疗机构的 Google Place ID

    • 输出:

      • 营业时间、提供的服务、联系信息等。

  • 计算路线至设施

    • 计算前往医疗机构的最快路线

    • 输入:

      • origin :患者的当前位置

      • facilityId :目的地设施的地点 ID

      • transportMode (可选):出行方式(驾车、步行、公交、救护车)

      • avoidTraffic (可选):规划路线以避开交通拥堵

  • 检查设施可用性

    • 检查医疗机构目前是否接受患者

    • 输入:

      • facilityId :医疗机构的地点 ID

      • emergencyLevel :医疗状况的紧急程度

配置

与 Claude Desktop 一起使用

要将此服务器与 Claude Desktop 应用程序一起使用,请将以下配置添加到claude_desktop_config.json的“mcpServers”部分:

{ "mcpServers": { "emergency-medicare-planner": { "command": "npx", "args": ["@manolaz/emergency-medicare-planner-mcp-server"], "env": { "GOOGLE_MAPS_API_KEY": "your_google_maps_api_key" } } } }

或者,如果您已经安装了该软件包,则可以直接使用 node 命令:

{ "mcpServers": { "emergency-medicare-planner": { "command": "node", "args": ["path/to/dist/index.js"], "env": { "GOOGLE_MAPS_API_KEY": "your_google_maps_api_key" } } } }

发展

从源代码构建

  1. 克隆存储库

  2. 安装依赖项:

    npm install
  3. 构建项目:

    npm run build

环境变量

  • GOOGLE_MAPS_API_KEY (必需):您的 Google Maps API 密钥,并启用以下 API:

    • 地点 API

    • 路线 API

    • 地理编码 API

    • 时区 API

    • 距离矩阵 API

测试

# Run test suite npm test # Run with debug logging DEBUG=emergency-medicare:* npm start

执照

此 MCP 服务器采用 MIT 许可证。更多详情,请参阅项目仓库中的 LICENSE 文件。

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/manolaz/emergency-medicare-planner-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server