Emergency Medicare Planner MCP Server

get_emergency_contacts

Retrieves emergency contact information for a specific location

Input Schema

NameRequiredDescriptionDefault
locationYesLocation to get emergency contacts for
serviceTypeNoTypes of emergency services needed

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "location": { "description": "Location to get emergency contacts for", "type": "string" }, "serviceType": { "description": "Types of emergency services needed", "items": { "type": "string" }, "type": "array" } }, "required": [ "location" ], "type": "object" }