arcade-mcp/toolkits/exa_api/arcade_exa_api/wrapper_tools/UpdateWebset.json
2025-10-30 12:02:59 -03:00

137 lines
4.3 KiB
JSON

{
"name": "UpdateWebset",
"fully_qualified_name": "ExaApi.UpdateWebset@0.1.0",
"description": "Update details of an existing webset.\n\nUse this tool to update the information of a specific webset identified by its ID. Ideal for modifying webset attributes when changes are needed.",
"toolkit": {
"name": "ArcadeExaApi",
"description": null,
"version": "0.1.0"
},
"input": {
"parameters": [
{
"name": "webset_id",
"required": true,
"description": "The unique id or externalId of the Webset to be updated. Ensure it matches a valid Webset.",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "The id or externalId of the Webset"
},
"inferrable": true,
"http_endpoint_parameter_name": "id"
},
{
"name": "webset_details",
"required": true,
"description": "A JSON object containing the details to update for the webset. This includes any attributes that need to be changed.",
"value_schema": {
"val_type": "json",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"inferrable": true,
"http_endpoint_parameter_name": "requestBody"
}
]
},
"output": {
"description": "Response from the API endpoint 'websets-update'.",
"available_modes": [
"value",
"error",
"null"
],
"value_schema": {
"val_type": "json",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": null
}
},
"requirements": {
"authorization": null,
"secrets": [
{
"key": "EXA_API_KEY"
}
],
"metadata": null
},
"deprecation_message": null,
"metadata": {
"object_type": "api_wrapper_tool",
"version": "1.1.0",
"description": "Tools that enable LLMs to interact directly with the exa API."
},
"http_endpoint": {
"metadata": {
"object_type": "http_endpoint",
"version": "1.2.0",
"description": ""
},
"url": "https://api.exa.ai/websets/v0/websets/{id}",
"http_method": "POST",
"headers": {},
"parameters": [
{
"name": "id",
"tool_parameter_name": "webset_id",
"description": "The id or externalId of the Webset",
"value_schema": {
"val_type": "string",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": "The id or externalId of the Webset"
},
"accepted_as": "path",
"required": true,
"deprecated": false,
"default": null,
"documentation_urls": []
},
{
"name": "requestBody",
"tool_parameter_name": "webset_details",
"description": "",
"value_schema": {
"val_type": "json",
"inner_val_type": null,
"enum": null,
"properties": null,
"inner_properties": null,
"description": ""
},
"accepted_as": "body",
"required": true,
"deprecated": false,
"default": null,
"documentation_urls": []
}
],
"documentation_urls": [],
"secrets": [
{
"arcade_key": "EXA_API_KEY",
"parameter_name": "Authorization",
"accepted_as": "header",
"formatted_value": "Bearer {authorization}",
"description": "",
"is_auth_token": false
}
],
"request_body_spec": "{\n \"required\": true,\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"type\": [\n \"object\"\n ],\n \"properties\": {\n \"metadata\": {\n \"description\": \"Set of key-value pairs you want to associate with this object.\",\n \"type\": \"object\",\n \"additionalProperties\": {\n \"type\": [\n \"string\"\n ],\n \"maxLength\": 1000\n },\n \"nullable\": true\n }\n }\n }\n }\n }\n}",
"use_request_body_schema_mode": false,
"validate_request_body_schema": false
}
}