Skip to main content
Glama
using76
by using76

bulc_load_evac_result

Load evacuation simulation results from .evac files for visualization and analysis in building design workflows.

Instructions

Load evacuation results from a .evac file for visualization.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
evacPathNoPath to .evac file. Default: auto-detect from last simulation

Implementation Reference

  • Handler implementation for the bulc_load_evac_result tool. Validates input using LoadEvacResultSchema and forwards the 'load_evac_result' command to the BULC client via getBulcClient().
    case "bulc_load_evac_result": {
      const validated = LoadEvacResultSchema.parse(args);
      result = await client.sendCommand({
        action: "load_evac_result",
        params: validated,
      });
      break;
    }
  • Zod schema defining the input validation for bulc_load_evac_result tool: optional 'evacPath' string parameter.
    const LoadEvacResultSchema = z.object({
      evacPath: z.string().optional(),
    });
  • MCP tool registration object for bulc_load_evac_result, including name, description, input schema, and annotations. This object is part of the exported evacTools array used in the main server.
    {
      name: "bulc_load_evac_result",
      description:
        "Load evacuation results from a .evac file for visualization.",
      inputSchema: {
        type: "object" as const,
        properties: {
          evacPath: {
            type: "string",
            description: "Path to .evac file. Default: auto-detect from last simulation",
          },
        },
      },
      annotations: {
        readOnlyHint: false,
        destructiveHint: false,
      },
    },
  • Top-level tool dispatch handler in main MCP server that routes bulc_load_evac_result (and other evac tools) to the specific handleEvacTool function.
    if (name.startsWith("bulc_") && name.includes("evac")) {
      return await handleEvacTool(name, safeArgs);
    }

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