remove_document
Delete a document from the navigation system by specifying its unique identifier (UUID). This tool ensures documents are removed from the DocNav-MCP server, maintaining clean and organized document management.
Instructions
Remove a document from the navigator.
Args:
doc_id: Document identifier (UUID)
Returns:
Success or error message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doc_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"doc_id": {
"title": "Doc Id",
"type": "string"
}
},
"required": [
"doc_id"
],
"title": "remove_documentArguments",
"type": "object"
}