- Home
- MCP servers
- Emergency Medicare Management
Emergency Medicare Management
- javascript
4
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"manolaz-emergency-medicare-planner-mcp-server": {
"command": "npx",
"args": [
"@manolaz/emergency-medicare-planner-mcp-server"
],
"env": {
"GOOGLE_MAPS_API_KEY": "your_google_maps_api_key"
}
}
}
}Emergency Medicare Management MCP Server integrates with Google Maps to locate and evaluate medical facilities in emergency situations. It helps you find hospitals and clinics within a 10 km radius based on medical needs, emergency level, and facility capabilities, with real-time routing and availability checks to support urgent healthcare decisions.
How to use
You connect your MCP client to the Emergency Medicare Management server to search for suitable medical facilities, view facility details, calculate the fastest routes, and check current availability. Start by providing your location, desired radius, and any medical specialties needed. The server will return matching facilities, allow you to view hours and services, and then route you to the selected destination while considering traffic and emergency transport mode.
How to install
# Prerequisites: install Node.js and npm
# 1) Install via Smithery (Claude Desktop auto-install)
# Use this command in your terminal:
npx -y @smithery/cli install @manolaz/emergency-medicare-planner-mcp-server --client claude
# 2) Install manually using npx (recommended)
npx @manolaz/emergency-medicare-planner-mcp-server
# 3) Run with Google Maps API key (example)
GOOGLE_MAPS_API_KEY=your_api_key npx @manolaz/emergency-medicare-planner-mcp-server
# Or install globally and run
npm install -g @manolaz/emergency-medicare-planner-mcp-server
GOOGLE_MAPS_API_KEY=your_api_key emergency-medicare-planner-mcp-server
Additional configuration and usage details
{
"mcpServers": {
"emergency_medicare_planner": {
"command": "npx",
"args": ["@manolaz/emergency-medicare-planner-mcp-server"],
"env": {
"GOOGLE_MAPS_API_KEY": "your_google_maps_api_key"
}
}
}
}
{
"mcpServers": {
"emergency_medicare_planner_node": {
"command": "node",
"args": ["path/to/dist/index.js"],
"env": {
"GOOGLE_MAPS_API_KEY": "your_google_maps_api_key"
}
}
}
}
Notes on environment and running
The server requires a Google Maps API key with Places, Directions, Geocoding, Time Zone, and Distance Matrix APIs enabled. Include this key in the environment when starting the server, either inline or via your orchestration method.
Tools and endpoints
The server exposes a set of tools to interact with medical facilities and routing data. These tools are designed to help you locate facilities, obtain details, plan routes, and verify availability during emergencies.
Available tools
searchMedicalFacilities
Search for hospitals, clinics, and medical facilities using Google Places API. Inputs include query, location, radius, and optional specialtyNeeded.
getMedicalFacilityDetails
Retrieve detailed information about a medical facility, including hours of operation, services, and contact information, using a Place ID.
calculateRouteToFacility
Compute the fastest route from the patient’s location to the selected facility. Supports transport modes like driving, walking, transit, and ambulance, with optional traffic avoidance.
checkFacilityAvailability
Check whether a facility is currently accepting patients based on the urgency of the medical emergency.