Skip to main content
Glama

configuration_export

Export Zabbix configuration in JSON or XML format for easy integration and system management. Specify format and options to retrieve structured data directly from the MCP server.

Instructions

Export configuration from Zabbix.

Args: format: Export format (json, xml) options: Export options Returns: str: JSON formatted export result

Input Schema

NameRequiredDescriptionDefault
formatNojson
optionsNo

Input Schema (JSON Schema)

{ "properties": { "format": { "default": "json", "title": "Format", "type": "string" }, "options": { "anyOf": [ { "additionalProperties": true, "type": "object" }, { "type": "null" } ], "default": null, "title": "Options" } }, "type": "object" }

Implementation Reference

  • The handler function for the 'configuration_export' MCP tool. It uses the Zabbix API client to export configuration in the specified format (default JSON) with optional parameters, formats the response, and returns it as a string. Registered via @mcp.tool() decorator.
    def configuration_export(format: str = "json", options: Optional[Dict[str, Any]] = None) -> str: """Export configuration from Zabbix. Args: format: Export format (json, xml) options: Export options Returns: str: JSON formatted export result """ client = get_zabbix_client() params = {"format": format} if options: params["options"] = options result = client.configuration.export(**params) return format_response(result)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mpeirone/zabbix-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server