changedInput schema / properties / authType / description
Previous value: -"Updated authentication type (e.g., 'bearer', 'basic', 'apiKey', 'none')"New value: +"Updated authentication type"
addedInput schema / properties / authType / enum
Added value: +[
+ "none",
+ "api_key",
+ "bearer",
+ "basic",
+ "oauth2"
+]
changedInput schema / properties / config / description
Previous value: -"Updated tool configuration for the HTTP endpoint"New value: +"Updated tool configuration"
addedInput schema / properties / config / properties / endpoint
Added value: +{
+ "description": "Updated target HTTP endpoint URL",
+ "type": "string"
+}
addedInput schema / properties / config / properties / mcpServerUrl
Added value: +{
+ "description": "Updated MCP server URL",
+ "type": "string"
+}
changedInput schema / properties / config / properties / method / description
Previous value: -"Updated HTTP method (GET, POST, PUT, DELETE, PATCH)"New value: +"Updated HTTP method"
addedInput schema / properties / config / properties / method / enum
Added value: +[
+ "GET",
+ "POST",
+ "PUT",
+ "PATCH",
+ "DELETE"
+]
addedInput schema / properties / config / properties / parametersSchema
Added value: +{
+ "additionalProperties": {},
+ "description": "Updated JSON Schema for tool parameters",
+ "type": "object"
+}
removedInput schema / properties / config / properties / responseMapping
Removed value: -{
- "additionalProperties": {},
- "description": "Updated mapping rules for the API response",
- "type": "object"
-}
removedInput schema / properties / config / properties / url
Removed value: -{
- "description": "Updated target HTTP endpoint URL (valid HTTP/HTTPS URL)",
- "type": "string"
-}
addedInput schema / properties / config / properties / webhookUrl
Added value: +{
+ "description": "Updated webhook URL",
+ "type": "string"
+}
addedInput schema / properties / type
Added value: +{
+ "description": "Updated type of the tool integration",
+ "enum": [
+ "http_api",
+ "webhook",
+ "mcp"
+ ],
+ "type": "string"
+}