{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ToolSearchRequest", "title": "ToolSearchRequest", "type": "object", "properties": { "intent": { "type": "string", "description": "User's intent or what they want to accomplish" }, "connector_slugs": { "type": "array", "items": { "type": "string" }, "description": "Optional list of connector slugs to filter the search" }, "max_results": { "type": "integer", "default": 10, "description": "Maximum number of results to return" } }, "required": [ "intent" ] }