Emergency Medicare Management MCP Server

emergency-medicare-planner-mcp-server

Local serverstdio

What is the Emergency Medicare Management MCP server?

Emergency Medicare Management MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. emergency-medicare-planner-mcp-server.

What you get

A powerful Model Context Protocol (MCP) server that integrates with Google Maps to locate and evaluate medical facilities in emergency situations. This server helps users find appropriate hospitals and clinics within 10km radius based on specific medical needs, emergency level, and facility capabilities.

Setting it up

The server ships on npm as @smithery/cli, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

What the assistant can call

Once Emergency Medicare Management is connected, these are the calls the assistant has available:

  • searchMedicalFacilities — Search for hospitals, clinics, and medical facilities using Google Places API
  • Input — - query (string): Search query (e.g., "emergency room", "pediatric clinic")
  • location — Latitude and longitude of patient location
  • getMedicalFacilityDetails — Get detailed information about a specific medical facility
  • Output — - Hours of operation, services offered, contact information, etc
  • calculateRouteToFacility — Calculate fastest route to a medical facility
  • facilityId — Place ID of the destination facility
  • checkFacilityAvailability — Check if a facility is currently accepting patients
  • emergencyLevel — Urgency level of the medical situation
  • Tools — The Tools tool exposed by this server
  • Testing — The Testing tool exposed by this server

Configuration and credentials

You will need one environment variable: GOOGLE_MAPS_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Emergency Medicare Management.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the emergency medicare management mcp server does with a few real requests.

Choosing this one

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Emergency Medicare Management's toolset — searchMedicalFacilities, Input, location and 8 more — is a fair guide to whether it matches your workflow. It is maintained by manolaz; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
searchMedicalFacilitiesSearch for hospitals, clinics, and medical facilities using Google Places API
Input- query (string): Search query (e.g., "emergency room", "pediatric clinic")
locationLatitude and longitude of patient location
getMedicalFacilityDetailsGet detailed information about a specific medical facility
Output- Hours of operation, services offered, contact information, etc.
calculateRouteToFacilityCalculate fastest route to a medical facility
facilityIdPlace ID of the destination facility
checkFacilityAvailabilityCheck if a facility is currently accepting patients
emergencyLevelUrgency level of the medical situation
ToolsThe Tools tool exposed by this server.
TestingThe Testing tool exposed by this server.

How to install the Emergency Medicare Management MCP server

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

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
GOOGLE_MAPS_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Emergency Medicare Management to searchMedicalFacilities.
  • Use Emergency Medicare Management to Input.
  • Use Emergency Medicare Management to location.

Frequently asked questions

The server requires the Places API, Directions API, Geocoding API, Time Zone API, and Distance Matrix API to be enabled on your Google Maps API key.