query
Search and retrieve specific entities in 3D-MCP by defining criteria such as type, properties, and pagination limits, enabling precise data access and management.
Instructions
Query entities based on criteria
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum results to return | |
offset | No | Starting offset for pagination | |
properties | No | Property values to match (path -> value) | |
type | No | Entity type to filter by |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum results to return",
"exclusiveMinimum": 0,
"type": "integer"
},
"offset": {
"description": "Starting offset for pagination",
"minimum": 0,
"type": "integer"
},
"properties": {
"additionalProperties": {},
"description": "Property values to match (path -> value)",
"type": "object"
},
"type": {
"description": "Entity type to filter by",
"type": "string"
}
},
"type": "object"
}