Skip to main content
Glama
jmandel

Smart EHR MCP Server

by jmandel
agentCard.ts1.33 kB
import type { AgentCard } from '../../src'; // Adjusted path export const priorAuthAgentCardPartial: Partial<AgentCard> = { name: "Prior Authorization Agent V2", version: "1.0.0", description: "Handles prior authorization requests based on configured policies.", provider: { organization: "Example Health Inc.", url: "https://example.com/health" }, // Default input is data, default output is also data (the decision) defaultInputModes: ["application/json"], defaultOutputModes: ["application/json"], skills: [ { id: 'priorAuthRequest', name: 'Submit Prior Authorization Request', description: 'Manages a prior authorization conversation, typically involving text-based exchange to gather necessary information. Can optionally accept FHIR data in DataParts, but can reach a final decision based solely on the text conversation.', tags: ['prior-auth', 'policy', 'clinical'], inputModes: ["application/json"], // Expects a DataPart outputModes: ["application/json"] // Returns a DataPart with decision } ], documentationUrl: "https://example.com/docs/prior-auth-agent", // No specific authentication defined here, can be added by server setup authentication: { schemes: [] } };

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jmandel/health-record-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server