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
drop_dimensions.json•1.08 KiB
{
"id": "drop_dimensions",
"schema": {
"type": "object",
"title": "",
"required": ["timeWindow", "dropDimensions"],
"properties": {
"timeWindow": {
"pattern": "\\d+[sm]$",
"type": "string",
"title": "Aggregation time window",
"description": "The time span of the tumbling window for aggregating events. Must be a valid time string (such as 10s).",
"default": "10s"
},
"dropDimensions": {
"type": "array",
"title": "Dimensions to drop",
"description": "One or more dimensions to be dropped. Supports wildcard expressions. Warning: Using wildcard '*' causes all dimensions in the event to be dropped.",
"default": [],
"minItems": 1,
"items": {
"type": "string"
}
},
"flushOnInputClose": {
"type": "boolean",
"title": "Flush on stream close",
"description": "Flush aggregations when an input stream is closed. If disabled, aggregations are flushed based on Time Window Settings instead.",
"default": true
}
}
}
}