MCP server endpoint (DELETE)
DELETE
/mcp-bot
const url = 'https://example.com/api/mcp-bot';const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://example.com/api/mcp-bot \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”MCP response
Media type application/json