anytype_delete_object
Archives or deletes an object within a specified space using the object ID. Facilitates streamlined object management in the Anytype MCP Server environment.
Instructions
Elimina (archiva) un objeto
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| object_id | Yes | ID del objeto a eliminar | |
| space_id | Yes | ID del espacio |
Input Schema (JSON Schema)
{
"properties": {
"object_id": {
"description": "ID del objeto a eliminar",
"required": true,
"type": "string"
},
"space_id": {
"description": "ID del espacio",
"required": true,
"type": "string"
}
},
"required": [
"space_id",
"object_id"
],
"type": "object"
}