SuzieQ MCP Server

by PovedaAqui
Verified

run_suzieq_summarize

Execute a SuzieQ 'summarize' query to condense network data from specific tables like 'device', 'bgp', or 'interface' into insights. Apply filters to refine results and receive output in JSON format.

Instructions

Runs a SuzieQ 'summarize' query via its REST API. Args: table: The name of the SuzieQ table to summarize (e.g., 'device', 'bgp', 'interface', 'route'). filters: An optional dictionary of filter parameters for the SuzieQ query (e.g., {"hostname": "leaf01", "vrf": "default"}). Keys should match SuzieQ filter names. Values can be strings or lists of strings. If no filters are needed, this can be None, null, or an empty dictionary. Returns: A JSON string representing the summarized result from the SuzieQ API, or a JSON string with an error message.

Input Schema

NameRequiredDescriptionDefault
filtersNo
tableYes

Input Schema (JSON Schema)

{ "properties": { "filters": { "anyOf": [ { "additionalProperties": true, "type": "object" }, { "type": "null" } ], "default": null, "title": "Filters" }, "table": { "title": "Table", "type": "string" } }, "required": [ "table" ], "title": "run_suzieq_summarizeArguments", "type": "object" }

You must be authenticated.

Other Tools from SuzieQ MCP Server

Related Tools

ID: rs1x5l381d