Revit MCP

by revit-mcp
MIT License
60

delete_element

Remove one or more elements from a Revit model using their element IDs, enabling precise and automated element deletion through the Revit MCP server.

Instructions

Delete one or more elements from the Revit model by their element IDs.

Input Schema

NameRequiredDescriptionDefault
elementIdsYesThe IDs of the elements to delete

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "elementIds": { "description": "The IDs of the elements to delete", "items": { "type": "string" }, "type": "array" } }, "required": [ "elementIds" ], "type": "object" }
ID: npu475c7cd