get_alerts
Retrieve a list of alerts from the alertmanager-mcp-server by applying filters for silenced, inhibited, or active statuses to streamline monitoring and incident management.
Instructions
Get a list of alerts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active | No | ||
filter | No | ||
inhibited | No | ||
silenced | No |
Input Schema (JSON Schema)
{
"properties": {
"active": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Active"
},
"filter": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Filter"
},
"inhibited": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Inhibited"
},
"silenced": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Silenced"
}
},
"title": "get_alertsArguments",
"type": "object"
}