get_types
Retrieve all available object types from an Anytype space to understand what objects can be created and find correct type IDs for new object creation.
Instructions
Retrieves all object types available in a specified Anytype space. This tool provides information about the different types of objects that can be created in the space, including their IDs, names, and metadata. Results are paginated for spaces with many types. Use this tool when you need to understand what types of objects can be created or to find the correct type ID for creating new objects.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| space_id | Yes | Space ID to get types from | |
| offset | No | Pagination offset | |
| limit | No | Number of results per page (1-100) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 100,
"description": "Number of results per page (1-100)",
"type": "number"
},
"offset": {
"default": 0,
"description": "Pagination offset",
"type": "number"
},
"space_id": {
"description": "Space ID to get types from",
"type": "string"
}
},
"required": [
"space_id"
],
"type": "object"
}