Emergency Medicare Planner MCP Server

find_nearby_medical_facilities

Finds hospitals and clinics nearby user location that match specific requirements

Input Schema

NameRequiredDescriptionDefault
careQualityNoExpected quality of medical care
facilitiesNoTypes of medical facilities to search for
infrastructureNoQuality of infrastructure and cleanliness
priceRangeNoPrice range preference
radiusNoSearch radius in meters (default: 10000m = 10km)
treatmentNeedsNoSpecific medical treatments or services needed
userLocationYesUser's current location (address or coordinates)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "careQuality": { "description": "Expected quality of medical care", "enum": [ "high", "medium", "any" ], "type": "string" }, "facilities": { "description": "Types of medical facilities to search for", "items": { "enum": [ "hospital", "clinic", "emergency", "pharmacy", "specialist" ], "type": "string" }, "type": "array" }, "infrastructure": { "description": "Quality of infrastructure and cleanliness", "enum": [ "excellent", "good", "any" ], "type": "string" }, "priceRange": { "description": "Price range preference", "enum": [ "low", "moderate", "high", "any" ], "type": "string" }, "radius": { "default": 10000, "description": "Search radius in meters (default: 10000m = 10km)", "type": "number" }, "treatmentNeeds": { "description": "Specific medical treatments or services needed", "items": { "type": "string" }, "type": "array" }, "userLocation": { "description": "User's current location (address or coordinates)", "type": "string" } }, "required": [ "userLocation" ], "type": "object" }