bulc_delete_furniture
Remove furniture items from building designs by specifying their unique ID, enabling precise editing of spatial layouts in fire simulation projects.
Instructions
Delete a furniture item by its ID. Get furniture IDs from bulc_list_furniture.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Furniture ID to delete |
Implementation Reference
- src/tools/furniture.ts:289-296 (handler)Handler logic for the bulc_delete_furniture tool. Validates the input arguments using DeleteFurnitureSchema and sends a 'delete_furniture' command to the BULC client.case "bulc_delete_furniture": { const validated = DeleteFurnitureSchema.parse(args); result = await client.sendCommand({ action: "delete_furniture", params: validated, }); break; }
- src/tools/furniture.ts:238-240 (schema)Zod validation schema for the input to bulc_delete_furniture, requiring a 'id' string.const DeleteFurnitureSchema = z.object({ id: z.string(), });
- src/tools/furniture.ts:179-196 (registration)Tool registration entry for bulc_delete_furniture in the furnitureTools export array, including name, description, input schema, and annotations.{ name: "bulc_delete_furniture", description: "Delete a furniture item by its ID. Get furniture IDs from bulc_list_furniture.", inputSchema: { type: "object" as const, properties: { id: { type: "string", description: "Furniture ID to delete", }, }, required: ["id"], }, annotations: { readOnlyHint: false, destructiveHint: true, }, },
- src/tools/furniture.ts:182-191 (schema)Static input schema definition embedded in the tool registration for bulc_delete_furniture.inputSchema: { type: "object" as const, properties: { id: { type: "string", description: "Furniture ID to delete", }, }, required: ["id"], },