Skip to main content
Glama
using76
by using76

bulc_delete_furniture

Destructive

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
NameRequiredDescriptionDefault
idYesFurniture ID to delete

Implementation Reference

  • 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;
    }
  • Zod validation schema for the input to bulc_delete_furniture, requiring a 'id' string.
    const DeleteFurnitureSchema = z.object({
      id: z.string(),
    });
  • 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,
      },
    },
  • 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"],
    },

Tool Definition Quality

Score is being calculated. Check back soon.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/using76/BULC_MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server