Skip to main content
Glama

FHIR MCP Server

by the-momentum
models.pyβ€’503 B
from datetime import datetime from enum import Enum class AuthMethod(Enum): CLIENT_CREDENTIALS = "client_credentials" AUTHORIZATION_CODE = "authorization_code" class Token: def __init__(self, access_token: str | None = None, expires_at: datetime | None = None): """ Args: access_token (str): The access token expires_at (datetime): The expiration timestamp """ self.access_token = access_token self.expires_at = expires_at

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/the-momentum/fhir-mcp-server'

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