We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/weibaohui/k8m'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
package constants
// AIPromptType AI提示词类型
type AIPromptType string
const (
// AIPromptTypeEvent 事件分析类型
AIPromptTypeEvent AIPromptType = "Event"
// AIPromptTypeDescribe 资源描述分析类型
AIPromptTypeDescribe AIPromptType = "Describe"
// AIPromptTypeExample 示例类型
AIPromptTypeExample AIPromptType = "Example"
// AIPromptTypeFieldExample 字段示例类型
AIPromptTypeFieldExample AIPromptType = "FieldExample"
// AIPromptTypeResource 资源类型
AIPromptTypeResource AIPromptType = "Resource"
// AIPromptTypeK8sGPTResource K8sGPT资源类型
AIPromptTypeK8sGPTResource AIPromptType = "K8sGPTResource"
// AIPromptTypeAnySelection 任意选择类型
AIPromptTypeAnySelection AIPromptType = "AnySelection"
// AIPromptTypeAnyQuestion 任意问题类型
AIPromptTypeAnyQuestion AIPromptType = "AnyQuestion"
// AIPromptTypeCron Cron表达式类型
AIPromptTypeCron AIPromptType = "Cron"
// AIPromptTypeLog 日志分析类型
AIPromptTypeLog AIPromptType = "Log"
)