delete_record
Remove a specific record from a resource by specifying its URI and record ID. Ideal for maintaining up-to-date and accurate data in your MCP Template server.
Instructions
Delete a record from a resource
Input Schema
Name | Required | Description | Default |
---|---|---|---|
recordId | Yes | ID of the record to delete | |
resourceUri | Yes | URI of the resource |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"recordId": {
"description": "ID of the record to delete",
"type": "string"
},
"resourceUri": {
"description": "URI of the resource",
"type": "string"
}
},
"required": [
"resourceUri",
"recordId"
],
"type": "object"
}