item_update
Modify Zabbix monitoring items by updating their name, key, update interval, or status using the item_update tool on the zabbix-mcp-server.
Instructions
Update an existing item in Zabbix.
Args:
itemid: Item ID to update
name: New item name
key_: New item key
delay: New update interval
status: New status (0=enabled, 1=disabled)
Returns:
str: JSON formatted update result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
delay | No | ||
itemid | Yes | ||
key_ | No | ||
name | No | ||
status | No |
Input Schema (JSON Schema)
{
"properties": {
"delay": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Delay"
},
"itemid": {
"title": "Itemid",
"type": "string"
},
"key_": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Key"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"status": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Status"
}
},
"required": [
"itemid"
],
"type": "object"
}