Emergency Medicare Planner MCP Server

check_medicare_coverage

Checks what treatments and procedures are covered by Medicare

Input Schema

NameRequiredDescriptionDefault
insuranceTypeNoType of Medicare insurance (e.g., Part A, Part B)
stateYesUS State code (e.g., CA, NY)
treatmentCodeYesMedicare treatment or procedure code

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "insuranceType": { "description": "Type of Medicare insurance (e.g., Part A, Part B)", "type": "string" }, "state": { "description": "US State code (e.g., CA, NY)", "type": "string" }, "treatmentCode": { "description": "Medicare treatment or procedure code", "type": "string" } }, "required": [ "treatmentCode", "state" ], "type": "object" }