Huntress-MCP-Server

list_agents

List agents in the account

Input Schema

NameRequiredDescriptionDefault
limitNoNumber of results per page (1-500)
organization_idNoFilter by organization ID
pageNoPage number (starts at 1)
platformNoFilter by platform (darwin or windows)

Input Schema (JSON Schema)

{ "properties": { "limit": { "description": "Number of results per page (1-500)", "maximum": 500, "minimum": 1, "type": "integer" }, "organization_id": { "description": "Filter by organization ID", "type": "integer" }, "page": { "description": "Page number (starts at 1)", "minimum": 1, "type": "integer" }, "platform": { "description": "Filter by platform (darwin or windows)", "enum": [ "darwin", "windows" ], "type": "string" } }, "type": "object" }