delete_json_doc_from_db
Remove a JSON document by its ID from a specified database on the MCP JSON Document Collection Server, enabling efficient document management.
Instructions
Delete a JSON document by ID from a document database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
databaseName | No | name of document database to delete from | |
id | No | ID of document to delete |
Input Schema (JSON Schema)
{
"properties": {
"databaseName": {
"description": "name of document database to delete from",
"type": "string"
},
"id": {
"description": "ID of document to delete",
"type": "string"
}
},
"type": "object"
}