get_emergency_contacts
Retrieve emergency contact details for a specific location using the Emergency Medicare Planner MCP Server. Specify location and service types to access relevant emergency services.
Instructions
Retrieves emergency contact information for a specific location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | Yes | Location to get emergency contacts for | |
serviceType | No | Types 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"
}