Deregister a tool
DELETE
/v1/tools/{tool_id}
const url = 'http://localhost:8693/v1/tools/example';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url http://localhost:8693/v1/tools/exampleParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” tool_id
required
string
Responses
Section titled “ Responses ”Tool deregistered
Tool not found
Tool registry not initialised