Skip to main content
Glama

bulc_clear_evac_stair

Remove stair configuration from furniture items in BULC Building Designer to modify evacuation routes and adjust building layouts.

Instructions

Remove stair configuration from a furniture item.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
furnitureIdYesFurniture ID to clear stair config from

Implementation Reference

  • Handler logic for 'bulc_clear_evac_stair' tool: validates input schema and forwards 'clear_evac_stair' action to BULC client.
    case "bulc_clear_evac_stair": { const validated = ClearEvacStairSchema.parse(args); result = await client.sendCommand({ action: "clear_evac_stair", params: validated, }); break; }
  • Zod validation schema for 'bulc_clear_evac_stair' tool input (requires furnitureId string).
    const ClearEvacStairSchema = z.object({ furnitureId: z.string(), });
  • Tool registration in evacTools array, defining name, description, input schema, and annotations for 'bulc_clear_evac_stair'.
    { name: "bulc_clear_evac_stair", description: "Remove stair configuration from a furniture item.", inputSchema: { type: "object" as const, properties: { furnitureId: { type: "string", description: "Furniture ID to clear stair config from", }, }, required: ["furnitureId"], }, annotations: { readOnlyHint: false, destructiveHint: true, }, },

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