Batch Delete Mcp
DELETE
/admin/mcp
const url = 'http://localhost:9000/admin/mcp';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:9000/admin/mcpResponses
Section titled “ Responses ”OK
Media type application/json
object
id
string
object
string
deleted
boolean
Example generated
{ "id": "example", "object": "example", "deleted": true}