export_object
Export Anytype objects to Markdown format for external use or backup. Extract content to share with other applications or create portable documentation files.
Instructions
Exports an Anytype object in Markdown format. This tool allows you to extract content from Anytype for use in other applications or for backup purposes. Markdown format is human-readable and suitable for documentation. Use this tool when you need to share Anytype content with external systems or create portable backups.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| space_id | Yes | Space ID containing the object | |
| object_id | Yes | Object ID to export | |
| format | Yes | Export format (currently only 'markdown' is supported) |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"const": "markdown",
"description": "Export format (currently only 'markdown' is supported)",
"type": "string"
},
"object_id": {
"description": "Object ID to export",
"type": "string"
},
"space_id": {
"description": "Space ID containing the object",
"type": "string"
}
},
"required": [
"space_id",
"object_id",
"format"
],
"type": "object"
}