We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/msathiyakeerthi/google-cloud-healthcare-api-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
export function isValidFhirQueryArgs(args) {
if (typeof args !== "object" || args === null)
return false;
if (typeof args.patientId !== "string" || typeof args.code !== "string") {
return false;
}
if (args.dateFrom && !/^\d{4}-\d{2}-\d{2}$/.test(args.dateFrom)) {
return false;
}
if (args.dateTo && !/^\d{4}-\d{2}-\d{2}$/.test(args.dateTo)) {
return false;
}
return true;
}