listMaterials
Retrieve and filter a list of materials in 3D creative workflows using the 3D-MCP server. Apply filters, pagination, and parent ID to streamline material selection and organization.
Instructions
List all Materials
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filters | No | Optional filters to apply | |
limit | No | Maximum number of results | |
offset | No | Starting offset for pagination | |
parentId | No | Optional parent ID to filter by |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filters": {
"additionalProperties": {},
"description": "Optional filters to apply",
"type": "object"
},
"limit": {
"description": "Maximum number of results",
"exclusiveMinimum": 0,
"type": "integer"
},
"offset": {
"description": "Starting offset for pagination",
"minimum": 0,
"type": "integer"
},
"parentId": {
"description": "Optional parent ID to filter by",
"type": "string"
}
},
"type": "object"
}