changedInput schema / properties / authType / description
Previous value: -"Authentication type for the endpoint (e.g., 'bearer', 'basic', 'apiKey', 'none')"New value: +"Authentication type for the endpoint"
addedInput schema / properties / authType / enum
Added value: +[
+ "none",
+ "api_key",
+ "bearer",
+ "basic",
+ "oauth2"
+]
changedInput schema / properties / config / description
Previous value: -"Tool configuration specifying the HTTP endpoint and request details"New value: +"Tool configuration specifying the endpoint and request details"
addedInput schema / properties / config / properties / endpoint
Added value: +{
+ "description": "Target HTTP endpoint URL for http_api tools",
+ "type": "string"
+}
addedInput schema / properties / config / properties / mcpServerUrl
Added value: +{
+ "description": "MCP server URL for mcp-type tools",
+ "type": "string"
+}
changedInput schema / properties / config / properties / method / description
Previous value: -"HTTP method to use (GET, POST, PUT, DELETE, PATCH)"New value: +"HTTP method to use"
addedInput schema / properties / config / properties / method / enum
Added value: +[
+ "GET",
+ "POST",
+ "PUT",
+ "PATCH",
+ "DELETE"
+]
addedInput schema / properties / config / properties / parametersSchema
Added value: +{
+ "additionalProperties": {},
+ "description": "JSON Schema describing the parameters the tool accepts",
+ "type": "object"
+}
removedInput schema / properties / config / properties / responseMapping
Removed value: -{
- "additionalProperties": {},
- "description": "Mapping rules for extracting and formatting the API response",
- "type": "object"
-}
removedInput schema / properties / config / properties / url
Removed value: -{
- "description": "Target HTTP endpoint URL (valid HTTP/HTTPS URL)",
- "type": "string"
-}
addedInput schema / properties / config / properties / webhookUrl
Added value: +{
+ "description": "Webhook URL for webhook-type tools",
+ "type": "string"
+}
removedInput schema / properties / config / required
Removed value: -[
- "url",
- "method"
-]
changedInput schema / properties / type / description
Previous value: -"Type of the tool integration (e.g., 'http', 'webhook')"New value: +"Type of the tool integration"
addedInput schema / properties / type / enum
Added value: +[
+ "http_api",
+ "webhook",
+ "mcp"
+]
changedInput schema / required
Previous value: -[
- "botId",
- "name",
- "type",
- "config"
-]New value: +[
+ "botId",
+ "name",
+ "description",
+ "type",
+ "config"
+]