We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/medplum/medplum'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
managed-identities.tf•577 B
# This is the identity used by the medplum server to access Azure resources like KeyVault and storage
resource "azurerm_user_assigned_identity" "medplum_server_identity" {
location = var.location
name = "medplum-${var.environment}-${var.deployment_id}-server"
resource_group_name = var.resource_group_name
}
output "medplum_server_identity_name" {
value = azurerm_user_assigned_identity.medplum_server_identity.name
}
output "medplum_server_identity_client_id" {
value = azurerm_user_assigned_identity.medplum_server_identity.client_id
}