We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/atree1023/snc-cribl-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"id": "rollup_metrics",
"schema": {
"type": "object",
"title": "",
"properties": {
"dimensions": {
"title": "Dimensions",
"description": "List of dimensions across which to perform rollups. Supports wildcards. Defaults to all original dimensions.",
"default": ["*"],
"type": "array",
"items": {
"type": "string"
}
},
"timeWindow": {
"pattern": "\\d+[sm]$",
"type": "string",
"title": "Time window",
"description": "The time span of the rollup window. Must be a valid time string (such as 10s).",
"default": "30s"
},
"gaugeRollup": {
"title": "Gauge update",
"description": "The operation to use when rolling up gauge metrics. Defaults to last.",
"default": "last",
"type": "string",
"enum": ["last", "max", "min", "avg"],
"enumNames": ["Last", "Maximum", "Minimum", "Average"]
}
}
}
}