Revit MCP

by revit-mcp
Verified

delete_element

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" }