{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/merge/refs/heads/main/json-structure/agent-handler-tool-pack-structure.json", "name": "ToolPack", "description": "A Merge Agent Handler Tool Pack — a named bundle of connectors and tools exposed to AI agents via MCP.", "type": "object", "properties": { "id": { "type": "uuid" }, "name": { "type": "string" }, "slug": { "type": "string" }, "description": { "type": "string" }, "connectors": { "type": "array", "items": { "type": "string" } }, "tool_count": { "type": "integer" }, "default_for_new_users": { "type": "boolean" }, "security_rules": { "type": "array", "items": { "type": "string" } }, "created_at": { "type": "datetime" }, "modified_at": { "type": "datetime" } } }