We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vasayxtx/mcp-prompt-engine'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
logical_operators.tmpl•352 B
{{/* Template with logical operators (and/or) in if blocks */}}
{{if and .is_admin .has_permission}}Admin Access: You have full access to {{.resource}}.{{end}}
{{if or .show_warning .show_error}}Alert: {{.message}}{{end}}
{{if and (or .is_premium .is_trial) .feature_enabled}}Premium Feature: {{.feature_name}} is available.{{end}}
User: {{.username}}