listIKChains
Retrieve all IKChains from 3D-MCP with optional filters, pagination, and parent ID filtering to manage and navigate inverse kinematic chains in 3D creative software.
Instructions
List all IKChains
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"
}