Skip to main content
Glama

color_elements

Assign distinct colors to Revit elements in the current view based on category and parameter values, with options for gradient schemes or custom RGB colors for clearer visual differentiation.

Instructions

Color elements in the current view based on a category and parameter value. Each unique parameter value gets assigned a distinct color.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
categoryNameYesThe name of the Revit category to color (e.g., 'Walls', 'Doors', 'Rooms')
customColorsNoOptional array of custom RGB colors to use for specific parameter values
parameterNameYesThe name of the parameter to use for grouping and coloring elements
useGradientNoWhether to use a gradient color scheme instead of random colors

Implementation Reference

  • The handler function for the 'color_elements' tool. It takes input arguments, connects to Revit using withRevitConnection, sends a 'color_splash' command, processes the response, and returns formatted text content.
    async (args, extra) => { const params = args; try { const response = await withRevitConnection(async (revitClient) => { return await revitClient.sendCommand("color_splash", params); }); // Format the response into a more user-friendly output if (response.success) { const coloredGroups = response.results || []; let resultText = `Successfully colored ${response.totalElements} elements across ${response.coloredGroups} groups.\n\n`; resultText += "Parameter Value Groups:\n"; coloredGroups.forEach((group: any) => { const rgb = group.color; resultText += `- "${group.parameterValue}": ${group.count} elements colored with RGB(${rgb.r}, ${rgb.g}, ${rgb.b})\n`; }); return { content: [ { type: "text", text: resultText, }, ], }; } else { return { content: [ { type: "text", text: `Color operation failed: ${response.message}`, }, ], }; } } catch (error) { return { content: [ { type: "text", text: `Color operation failed: ${ error instanceof Error ? error.message : String(error) }`, }, ], }; } } );
  • Zod schema defining the input parameters for the 'color_elements' tool: categoryName, parameterName, useGradient, and optional customColors.
    { categoryName: z .string() .describe("The name of the Revit category to color (e.g., 'Walls', 'Doors', 'Rooms')"), parameterName: z .string() .describe("The name of the parameter to use for grouping and coloring elements"), useGradient: z .boolean() .optional() .default(false) .describe("Whether to use a gradient color scheme instead of random colors"), customColors: z .array( z.object({ r: z.number().int().min(0).max(255), g: z.number().int().min(0).max(255), b: z.number().int().min(0).max(255), }) ) .optional() .describe("Optional array of custom RGB colors to use for specific parameter values"), },
  • Registers the 'color_elements' MCP tool on the server using server.tool(), including name, description, schema, and handler.
    export function registerColorElementsTool(server: McpServer) { server.tool( "color_elements", "Color elements in the current view based on a category and parameter value. Each unique parameter value gets assigned a distinct color.", { categoryName: z .string() .describe("The name of the Revit category to color (e.g., 'Walls', 'Doors', 'Rooms')"), parameterName: z .string() .describe("The name of the parameter to use for grouping and coloring elements"), useGradient: z .boolean() .optional() .default(false) .describe("Whether to use a gradient color scheme instead of random colors"), customColors: z .array( z.object({ r: z.number().int().min(0).max(255), g: z.number().int().min(0).max(255), b: z.number().int().min(0).max(255), }) ) .optional() .describe("Optional array of custom RGB colors to use for specific parameter values"), }, async (args, extra) => { const params = args; try { const response = await withRevitConnection(async (revitClient) => { return await revitClient.sendCommand("color_splash", params); }); // Format the response into a more user-friendly output if (response.success) { const coloredGroups = response.results || []; let resultText = `Successfully colored ${response.totalElements} elements across ${response.coloredGroups} groups.\n\n`; resultText += "Parameter Value Groups:\n"; coloredGroups.forEach((group: any) => { const rgb = group.color; resultText += `- "${group.parameterValue}": ${group.count} elements colored with RGB(${rgb.r}, ${rgb.g}, ${rgb.b})\n`; }); return { content: [ { type: "text", text: resultText, }, ], }; } else { return { content: [ { type: "text", text: `Color operation failed: ${response.message}`, }, ], }; } } catch (error) { return { content: [ { type: "text", text: `Color operation failed: ${ error instanceof Error ? error.message : String(error) }`, }, ], }; } } ); }

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/ideook/revit-mcp'

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