Skip to content
DELETE /mcp
curl -X DELETE 'https://api.elaichi.ai/mcp' \
  -H 'Content-Type: application/json'
const response = await fetch('https://api.elaichi.ai/mcp', {
  method: 'DELETE',
  headers: {
    'Content-Type': 'application/json',
  },
});

const data = await response.json();
console.log(data);
import os
import requests

url = "https://api.elaichi.ai/mcp"
headers = {
    "Content-Type": "application/json",
}

response = requests.delete(url, headers=headers)
print(response.json())