get_elements
Extract specific elements from a Revit model by specifying category, view, or level IDs using the Revit MCP Server API for precise data retrieval.
Instructions
获取 Revit 模型中的元素
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categoryIds | No | 需要获取的元素所属类别的Id集合 | |
levelIds | No | 需要获取的元素所处的标高的Id集合 | |
viewIds | No | 需要获取的元素所处的视图的Id集合 |
Input Schema (JSON Schema)
{
"properties": {
"categoryIds": {
"description": "需要获取的元素所属类别的Id集合",
"type": "array"
},
"levelIds": {
"description": "需要获取的元素所处的标高的Id集合",
"type": "array"
},
"viewIds": {
"description": "需要获取的元素所处的视图的Id集合",
"type": "array"
}
},
"type": "object"
}