anytype_get_object
Retrieve a specific object by its ID using the Anytype MCP Server. Input the space ID and object ID to access detailed object information.
Instructions
Obtiene un objeto especΓfico por su ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| object_id | Yes | ID del objeto | |
| space_id | Yes | ID del espacio |
Input Schema (JSON Schema)
{
"properties": {
"object_id": {
"description": "ID del objeto",
"required": true,
"type": "string"
},
"space_id": {
"description": "ID del espacio",
"required": true,
"type": "string"
}
},
"required": [
"space_id",
"object_id"
],
"type": "object"
}