api_delete
Perform an HTTP DELETE request to a specified URL using optional headers. Part of the MCP API Server for sending standardized API requests.
Instructions
Make an HTTP DELETE request to the specified URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
headers | No | Optional headers to include in the request | |
url | Yes | The URL to make the DELETE request to |
Input Schema (JSON Schema)
{
"properties": {
"headers": {
"additionalProperties": {
"type": "string"
},
"description": "Optional headers to include in the request",
"type": "object"
},
"url": {
"description": "The URL to make the DELETE request to",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}