Revit MCP Server
The Revit MCP Server enables AI-driven interaction with Autodesk Revit, allowing data retrieval, element creation/modification, and code execution.
Data Retrieval: Query information about current views, elements, selected elements, and available family types with filtering options.
Element Management: Create, modify, or delete point-based (doors, windows, furniture), line-based (walls, beams), and surface-based elements (floors, cei
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Revit MCP Servercreate a new wall between these two points"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
revit-mcp
English | 简体中文
Description
revit-mcp allows you to interact with Revit using the MCP protocol through MCP-supported clients (such as Claude, Cline, etc.).
This project is the server side (providing Tools to AI), and you need to use revit-mcp-plugin (driving Revit) in conjunction.
Related MCP server: Revit MCP Server
Features
Allow AI to get data from the Revit project
Allow AI to drive Revit to create, modify, and delete elements
Send AI-generated code to Revit to execute (may not be successful, successful rate is higher in some simple scenarios with clear requirements)
Requirements
nodejs 18+
Complete installation environment still needs to consider the needs of revit-mcp-plugin, please refer to revit-mcp-plugin
Installation
1. Build local MCP service
Install dependencies
npm installBuild
npm run build2. Client configuration
Claude client
Claude client -> Settings > Developer > Edit Config > claude_desktop_config.json
{
"mcpServers": {
"revit-mcp": {
"command": "node",
"args": ["<path to the built file>\\build\\index.js"]
}
}
}Restart the Claude client. When you see the hammer icon, it means the connection to the MCP service is normal.

Framework
flowchart LR
CladueDesktop --> revit-mcp --> SocketService--commandName-->CommandlSet--command-->CommandExecute
CommandManager --> CommandlSet
CommandExecute --executeResult--> SocketService
CommandProject1 --> CommandManager
CommandProject2 --> CommandManager
CommandProject... --> CommandManager
subgraph ide1 [MCPClient]
CladueDesktop
end
subgraph ide2 [MCPServer]
revit-mcp
end
subgraph ide3 [Revit]
subgraph ide3.1 [revit-mcp-plugin]
SocketService
CommandlSet
CommandManager
CommandExecute
end
endSupported Tools
Name | Description |
get_current_view_info | Get current view info |
get_current_view_elements | Get current view elements |
get_available_family_types | Get available family types in current project |
get_selected_elements | Get selected elements |
create_point_based_element | Create point based element (door, window, furniture) |
create_line_based_element | Create line based element (wall, beam, pipe) |
create_surface_based_element | Create surface based element (floor, ceiling) |
delete_elements | Delete elements |
reset_model | Reset model (delete process model when executing continuous dialog) |
modify_element | Modify element's properties (instance parameters) |
search_modules | Search for available modules |
use_module | Use module |
send_code_to_revit | Send code to Revit to execute |
color_splash | Color elements based on a parameter value |
tag_walls | Tag all walls in view |
Available Tools
15 toolsai_element_filterA
An intelligent Revit element querying tool designed specifically for AI assistants to retrieve detailed element information from Revit projects. This tool allows the AI to request elements matching specific criteria (such as category, type, visibility, or spatial location) and then perform further analysis on the returned data to answer complex user queries about Revit model elements. Example: When a user asks 'Find all walls taller than 5m in the project', the AI would: 1) Call this tool with parameters: {"filterCategory": "OST_Walls", "includeInstances": true}, 2) Receive detailed information about all wall instances in the project, 3) Process the returned data to filter walls with height > 5000mm, 4) Present the filtered results to the user with relevant details.
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Configuration parameters for the Revit element filter tool. These settings determine which elements will be selected from the Revit project based on various filtering criteria. Multiple filters can be combined to achieve precise element selection. All spatial coordinates should be provided in millimeters. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively communicates that the tool is read-only ('retrieve detailed element information'), includes a performance note about maxElements, and highlights nuances like furniture category ambiguity. However, it does not explicitly state the return format or error behavior, which would be valuable, but the provided details are substantial.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is moderately long (about 150 words) but well-structured: a clear definition, capability breakdown, and a practical usage example. The step-by-step example is valuable for agents but adds length; still, every section contributes to understanding. It is not overly verbose, but the example could be shortened slightly, so it warrants a 4 rather than 5.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a query tool with no output schema, the description provides a good overall picture: it explains filtering options, performance considerations, and the intended workflow. It does not specify the exact structure of the returned data, but the example implies the AI will receive 'detailed information' for further processing. Given the richness of the schema and the illustrative steps, the description is fairly complete, though a bit more detail on output format would push it to 5.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 100% description coverage, so the baseline is 3. The tool description adds an example of using 'filterCategory' and 'includeInstances' and notes that multiple filters can be combined, reinforcing schema semantics. However, it does not introduce new parameter meanings beyond what the schema already provides, so a score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'An intelligent Revit element querying tool designed specifically for AI assistants to retrieve detailed element information from Revit projects.' It specifies the verb 'retrieve' and resource 'element information', and the example workflow ('Find all walls taller than 5m') further clarifies its role. It distinguishes itself from sibling tools like get_current_view_elements and get_selected_elements by focusing on filtered retrieval based on criteria.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a concrete example of when to use the tool: when a user asks to find elements matching specific criteria, the AI should call this tool with appropriate filters. It implies the tool is the primary querying mechanism for element data, but it does not explicitly mention alternatives or exclusion cases. This is clear context without exclusions, so it aligns with a score of 4.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
color_elementsA
Color elements in the current view based on a category and parameter value. Each unique parameter value gets assigned a distinct color.
| Name | Required | Description | Default |
|---|---|---|---|
| categoryName | Yes | The name of the Revit category to color (e.g., 'Walls', 'Doors', 'Rooms') | |
| parameterName | Yes | The name of the parameter to use for grouping and coloring elements | |
| useGradient | No | Whether to use a gradient color scheme instead of random colors | |
| customColors | No | Optional array of custom RGB colors to use for specific parameter values |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits, but it only states that unique parameter values get distinct colors. It does not clarify whether this is a temporary visual override or a permanent change, whether existing colors are overwritten, how customColors affect the assignment, or what happens to elements missing the parameter. This is a significant gap for a mutating tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the main action, and contains no filler. Every word contributes to understanding the tool's purpose and basic mechanic.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is under-specified for a tool with four parameters and side effects. It does not explain how colors are applied, how long they persist, what customColors do in detail, or how the gradient option behaves. The description conveys the core idea but omits important operational context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All schema properties have descriptions, so schema coverage is 100%. The tool description adds no new parameter-level information beyond repeating 'category' and 'parameter value.' Baseline 3 is appropriate because the schema already documents each parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Color elements in the current view based on a category and parameter value.' It uses a specific verb ('Color'), identifies the resource ('elements in the current view'), and mentions the basis ('category and parameter value'), which distinguishes it from sibling tools like delete_element or create_line_based_element.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes the primary usage context explicit: coloring elements in the current view by category and parameter value. It implies a visualization/review workflow, but does not explicitly discuss when to avoid this tool or compare it to alternatives. Still, the context is clear enough to guide selection among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_line_based_elementA
Create one or more line-based elements in Revit such as walls, beams, or pipes. Supports batch creation with detailed parameters including family type ID, start and end points, thickness, height, and level information. All units are in millimeters (mm).
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Array of line-based elements to create |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the burden of behavioral disclosure. It mentions batch creation and units, but it does not disclose required document state, permissions, side effects, error behavior, or whether any return value is produced. For a mutating tool, this is a notable gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences and directly introduces the tool's purpose, key capabilities, and units. There is no filler or redundant repetition of schema details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The schema is detailed and the purpose is clear, but the description omits important execution context such as requiring an active Revit document, how elements are added to the model, and any result or feedback after creation. Since there is no output schema, some of this burden falls on the description, leaving it slightly incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions for all parameters, so the baseline is 3. The description adds meaningful value by stating that all units are in millimeters, which is critical for correctly interpreting coordinates and dimensions not specified in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Create') and the specific resource ('line-based elements in Revit such as walls, beams, or pipes'), which distinguishes it from sibling tools like create_point_based_element and create_surface_based_element.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context for when to use the tool by defining line-based elements with examples, but it does not explicitly mention when not to use it or name alternative tools. The sibling context makes the distinction obvious, so this is a 4 rather than a 3.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_point_based_elementA
Create one or more point-based elements in Revit such as doors, windows, or furniture. Supports batch creation with detailed parameters including family type ID, position, dimensions, and level information. All units are in millimeters (mm).
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Array of point-based elements to create |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the safety burden. It states the operation (create) and units, but does not explain side effects, required permissions, error behavior, or return values. It is minimal yet not misleading.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core purpose, and no filler. Every sentence contributes meaningful information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has a well-defined schema with one parameter, and the description covers the key purpose, batch capability, and units. It does not describe return values or error cases, but for a create tool this is acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers all parameter descriptions (100% coverage), so the baseline is 3. The description adds unit context ('All units are in millimeters') which is helpful, though slightly inaccurate since rotation is in degrees per the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool creates point-based elements in Revit with examples (doors, windows, furniture). The 'point-based' modifier distinguishes it from sibling line-based and surface-based tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions batch creation and detailed parameters, implying use for creating one or more elements at once. It does not explicitly state when not to use, but the sibling tool names provide context for differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_surface_based_elementA
Create one or more surface-based elements in Revit such as floors, ceilings, or roofs. Supports batch creation with detailed parameters including family type ID, boundary lines, thickness, and level information. All units are in millimeters (mm).
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Array of surface-based elements to create |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions the unit system (millimeters) and batch creation, but lacks disclosure of side effects, prerequisites (e.g., open document), error behavior, or what happens on failure. For a mutating tool, this is a notable gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose, followed by batch capability, parameter highlights, and units. Every sentence contributes meaningful information without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the detailed schema and lack of output schema/annotations, the description covers the high-level purpose, examples, batch aspect, and units. It lacks explicit error-handling or prerequisite information, but the overall context is sufficient for an agent to select and invoke the tool appropriately.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 100% property descriptions, so the baseline is 3. The description adds valuable context beyond the schema by specifying units (mm) and clarifying the tool accepts multiple elements in an array (batch). This extra semantic guidance raises the score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool creates surface-based elements (floors, ceilings, roofs) with a specific verb and resource, distinguishing it from sibling tools like create_line_based_element and create_point_based_element. It also mentions batch creation, adding further specificity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context by explicitly naming surface-based elements (floors, ceilings, roofs) and noting batch creation, which differentiates it from line/point-based alternatives. It does not provide explicit when-not-to-use or alternative tool references, but the examples and scope sufficiently guide an agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_elementA
Delete one or more elements from the Revit model by their element IDs.
| Name | Required | Description | Default |
|---|---|---|---|
| elementIds | Yes | The IDs of the elements to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of disclosing behavioral traits. It only states the deletion action but gives no caveats about irreversibility, potential side effects on dependent elements, or permission requirements. For a destructive operation, this lack of context is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that directly states the action, target, and method. Every word is useful, with no fluff or redundancy. It is appropriately concise for a tool with one parameter.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity and complete schema coverage, the description covers the basic invocation details. However, it lacks important contextual information such as the permanence of deletion or any side effects, which would be expected for a destructive operation. Since no output schema exists, the absence of return-value explanation is acceptable, but safety-related context is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides 100% coverage with a clear description for the elementIds parameter ('The IDs of the elements to delete'). The tool description adds no additional meaning beyond the schema, so the baseline score of 3 is appropriate. It does not offer syntax, formatting, or edge-case guidance.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool deletes one or more elements from the Revit model by their element IDs. The verb 'delete' is specific, and the resource and method are unambiguous. It is easily distinguished from sibling tools like get_selected_elements or operate_element.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage: when you want to delete elements by ID. However, it does not explicitly mention any alternatives or when not to use this tool, such as comparing with operate_element. There is no clear context that would help an agent decide between this and other manipulation tools, so it remains at an implied level.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_available_family_typesA
Get available family types in the current Revit project. You can filter by category and family name, and limit the number of returned types.
| Name | Required | Description | Default |
|---|---|---|---|
| categoryList | No | List of Revit category names to filter by (e.g., 'OST_Walls', 'OST_Doors', 'OST_Furniture') | |
| familyNameFilter | No | Filter family types by family name (partial match) | |
| limit | No | Maximum number of family types to return |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden. It indicates a read operation ('Get') and explains filtering/limit behavior, but fails to disclose the return format, ordering, or edge cases like empty results. This is a notable gap for an output with no schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core purpose and followed by a concise list of capabilities. Every word earns its place, with no redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with three optional parameters fully documented in the schema, but there is no output schema and the description does not describe the structure of the returned 'family types'. An agent would need to infer the return type, which leaves a clear completeness gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides 100% coverage with clear descriptions for all three parameters (limit, categoryList, familyNameFilter). The description's mention of filtering and limiting adds no new semantic detail beyond what the schema defines.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool 'Get available family types in the current Revit project' with a specific verb ('Get') and resource ('family types'). It also mentions filtering and limiting, which distinguishes it from sibling get tools focused on views or elements.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description gives clear context: it is for retrieving available family types in the current Revit project, with optional filters. Although it doesn't explicitly mention alternatives or exclusions, the resource-specific nature makes the usage context apparent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_current_document_infoB
获取 Revit 当前活动视图的详细信息,包括视图类型、名称、比例等属性。
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states this is a read operation ('获取' - get), which implies it's non-destructive, but doesn't mention any behavioral traits like whether it requires specific permissions, what happens if no view is active, response format, or potential errors. For a tool with zero annotation coverage, this leaves significant gaps in understanding how it behaves.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that clearly states what the tool does. It's appropriately sized for a zero-parameter tool, front-loaded with the core purpose, and includes helpful examples of the attributes returned. Every word earns its place with no redundancy or unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (zero parameters, no annotations, no output schema), the description is reasonably complete for basic understanding. It explains what information is retrieved and from where. However, without an output schema, the description doesn't detail the return format or structure, and it doesn't address potential edge cases (like what happens if no view is active). For a read-only tool with no parameters, this is adequate but leaves room for improvement.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters (schema coverage 100%), so the baseline score for this dimension is 4. The description appropriately doesn't discuss parameters since none exist, and instead focuses on what information the tool retrieves. No parameter information is needed or expected given the empty input schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '获取 Revit 当前活动视图的详细信息' (Get detailed information about Revit's current active view). It specifies the verb ('获取' - get) and resource ('当前活动视图' - current active view), and lists example attributes ('视图类型、名称、比例等属性' - view type, name, scale, etc.). However, it doesn't explicitly differentiate from sibling tools like 'get_current_view_info' or 'get_current_view_elements', which reduces clarity about when to use this specific tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. There are several sibling tools that appear related to view information ('get_current_view_info', 'get_current_view_elements'), but the description doesn't explain how this tool differs from them or when one should be preferred over another. No context about prerequisites, timing, or exclusions is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_current_view_elementsA
Get elements from the current active view in Revit. You can filter by model categories (like Walls, Floors) or annotation categories (like Dimensions, Text). Use includeHidden to show/hide invisible elements and limit to control the number of returned elements.
| Name | Required | Description | Default |
|---|---|---|---|
| modelCategoryList | No | List of Revit model category names (e.g., 'OST_Walls', 'OST_Doors', 'OST_Floors') | |
| annotationCategoryList | No | List of Revit annotation category names (e.g., 'OST_Dimensions', 'OST_WallTags', 'OST_TextNotes') | |
| includeHidden | No | Whether to include hidden elements in the results | |
| limit | No | Maximum number of elements to return |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It does disclose important behaviors: includeHidden toggles inclusion of invisible elements (implying they are excluded by default), and limit controls the returned count. However, it does not mention the tool's read-only nature, error handling for invalid category names, or the return format (e.g., element IDs vs. objects). This is partial transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long, front-loaded with the main purpose, and finishes with the filtering options. No wasted words or redundant detail. Every sentence contributes to understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the core function and main options but omits the return format since there is no output schema. It does not state whether it returns element IDs, elements, or some other representation, which could be critical for an agent. It also doesn't address edge cases like empty views or invalid categories. Given the tool's moderate complexity, this is a gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with all parameters described. The description adds simple examples like 'Walls, Floors' and 'Dimensions, Text' to clarify category types, which is slightly more intuitive than the schema's built examples (e.g., 'OST_Walls'). It also explains includeHidden and limit functionally, but these are already in the schema. Overall, it adds marginal value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action: 'Get elements from the current active view in Revit.' It also distinguishes from sibling tools like get_current_view_info (which likely gets view metadata, not elements) and get_selected_elements (which gets user-selected elements, not all view elements). The verb 'Get' and resource 'elements from current active view' are precise.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool: when you need elements from the current active view, with optional filters. However, it does not explicitly mention alternatives or when not to use it (e.g., when you need selected elements instead of all view elements). This gives clear context without exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_current_view_infoA
获取 Revit 当前活动视图的详细信息,包括视图类型、名称、比例等属性。
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must convey behavioral traits on its own. It only states the action and sample outputs; it does not disclose safety, error conditions (e.g., no active view), or return format. This is a significant gap for a getter tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that names the tool's purpose and example outputs without any wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and no annotations, the description provides enough high-level detail about what is returned (view type, name, scale) but omits edge cases like a missing active view. It is adequate for a simple getter but not exhaustive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, and the schema confirms this. The description appropriately focuses on the output rather than parameters, matching the baseline of 4 for parameter-less tools.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves detailed information about the current active Revit view, listing specific properties (type, name, scale). This distinguishes it from siblings like get_current_view_elements, which focus on elements in the view.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit usage guidance or alternatives are mentioned. The context is implied—if you need view information, this is the tool—but there is no discussion of when not to use it or how it relates to siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_selected_elementsB
Get elements currently selected in Revit. You can limit the number of returned elements.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of elements to return |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the ability to limit the number of returned elements, which is useful. However, it doesn't mention edge cases like empty selection or default behavior, but for a simple getter this is acceptable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences, no unnecessary words. Front-loaded with the core purpose, then describes the limit parameter.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity (one optional parameter, no output schema, no annotations), the description is reasonably complete. It covers the core function and the limit option, though it could mention return format or behavior when nothing is selected.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides a description for the 'limit' parameter, so coverage is 100%. The description merely repeats this information ('You can limit the number of returned elements') without adding new meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool gets elements currently selected in Revit. This distinguishes it from sibling tools like get_current_view_elements, though it doesn't explicitly name alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. The description implies use when you need selected elements but doesn't compare with get_current_view_elements or other sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
open_documentD
Open Document
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | No | File Path |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure but provides none. It doesn't indicate whether this is a read-only operation, whether it modifies document state, what permissions are required, whether it affects other tools' operations, or what happens on success/failure. For a tool that presumably interacts with documents, this lack of behavioral information is a critical gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
While technically concise with just two words, this represents under-specification rather than effective brevity. The description fails to provide the necessary information a user or agent needs to understand and use the tool correctly. Every word should earn its place, but here the minimal text doesn't fulfill the description's purpose of clarifying the tool's function.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complete lack of annotations, no output schema, and a description that provides minimal information, this is inadequate for a document manipulation tool. The description doesn't explain what 'opening' entails, what happens after opening, whether the document becomes active/current, or how this interacts with sibling tools like 'get_current_document_info'. For a tool that likely changes application state, this level of documentation is insufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100% with a single parameter 'filePath' documented as 'File Path'. The description adds no additional parameter information beyond what the schema provides. Since the schema does the heavy lifting with complete coverage, the baseline score of 3 is appropriate - the description neither compensates for gaps nor adds value beyond the structured schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Open Document' is a tautology that merely restates the tool name without adding any meaningful clarification. It doesn't specify what 'open' means in this context (e.g., load into memory, display in UI, make editable) or what type of document is being opened. While the name suggests a document-related operation, the description fails to provide the specific verb+resource combination needed for clear understanding.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides absolutely no guidance about when to use this tool versus alternatives. With sibling tools like 'get_current_document_info' and various element creation tools, there's no indication whether this tool is for initial document loading, switching between documents, or another purpose. No prerequisites, exclusions, or contextual recommendations are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
operate_elementC
Operate on Revit elements by performing actions such as select, selectionBox, setColor, setTransparency, delete, hide, etc.
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Parameters for operating on Revit elements with specific actions |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must carry the burden of behavioral disclosure. It mentions 'delete' and 'hide' without cautioning about permanence or side effects, and gives no indication of reversibility or view-level changes. The action names imply some risk, but no explicit transparency is offered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that efficiently lists key actions and 'etc.', but it could be more structured by explicitly mentioning the 'action' parameter or grouping actions by effect (e.g., destructive vs. non-destructive).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a multi-action tool with no output schema, the description leaves out return values, error handling, and prerequisites (e.g., view context for selection actions). The schema's action details partially compensate, but the description alone is thin and does not provide a complete context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers 100% of parameters, and the action parameter's detailed description explains each valid action and its requirements. The description itself adds no additional parameter semantics beyond listing a few action names, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as operating on Revit elements with a list of example actions (select, selectionBox, setColor, setTransparency, delete, hide). However, it does not explicitly distinguish this tool from sibling tools like delete_element or color_elements, which overlap in functionality.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool instead of the dedicated sibling tools (delete_element, color_elements). The description lists actions but does not note which sibling tool would be more appropriate for a given operation, leaving the agent without clear usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send_code_to_revitB
Send C# code to Revit for execution. The code will be inserted into a template with access to the Revit Document and parameters. Your code should be written to work within the Execute method of the template.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | The C# code to execute in Revit. This code will be inserted into the Execute method of a template with access to Document and parameters. | |
| parameters | No | Optional execution parameters that will be passed to your code |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions that code is inserted into a template with access to Document and parameters, but doesn't address critical behaviors like execution safety (e.g., whether code runs in a sandbox, potential for destructive changes), authentication requirements, error handling, or performance implications. The description provides basic context but leaves significant gaps for a tool that executes arbitrary code.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized with two clear sentences that efficiently convey the core functionality. The first sentence states the primary action, and the second provides important contextual constraints about the template structure. There's no redundant information, though it could be slightly more front-loaded with usage context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool that executes arbitrary C# code in Revit with no annotations and no output schema, the description is insufficiently complete. It doesn't address safety considerations, expected return values, error conditions, or execution environment details that would be crucial for an AI agent to use this tool responsibly. The description covers basic mechanics but misses critical contextual information.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents both parameters. The description adds minimal value beyond the schema by mentioning the template context and Execute method, but doesn't provide additional syntax examples, parameter format details, or constraints beyond what's in the schema descriptions. This meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Send C# code to Revit for execution'), identifies the resource (Revit), and distinguishes it from sibling tools that perform element manipulation, filtering, or creation operations. It provides a precise verb+resource combination that is unique among the available tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an active Revit session), exclusions, or compare it to sibling tools like 'operate_element' or 'ai_element_filter' that might handle different types of operations. Usage is implied only through the tool's purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tag_all_wallsA
Create tags for all walls in the current active view. Tags will be placed at the middle point of each wall.
| Name | Required | Description | Default |
|---|---|---|---|
| useLeader | No | Whether to use a leader line when creating the tags | |
| tagTypeId | No | The ID of the specific wall tag family type to use. If not provided, the default wall tag type will be used |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the creation action, scope, and precise placement, but does not mention behavior regarding pre-existing tags, error conditions if no walls exist, or whether the operation is reversible. These gaps leave some uncertainty for an AI agent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description consists of two concise sentences with no filler. The first sentence front-loads the core function, and the second adds a valuable placement detail. Every word contributes to the understanding of the tool's behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with two optional parameters and no output schema, the description adequately covers what the tool does, where it operates, and the placement rule. While it does not address edge cases like duplicate tagging or invalid tag type IDs, these are not essential for this straightforward operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema descriptions cover both parameters 100%, so the tool description adds no additional parameter semantics. Baseline 3 applies because the schema already documents tagTypeId and useLeader clearly, and the description offers no extra context beyond that.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Create tags') and the exact resource ('all walls in the current active view'), plus placement detail ('middle point of each wall'). This distinguishes it from sibling tools that perform delete, filter, or element-creation operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context by specifying 'current active view', implying its use case for tagging all walls in a view. However, it does not explicitly mention alternatives or situations where this tool should not be used, such as when tagging only selected walls.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
v1.0.0- Changed
get_current_document_info1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
- Changed
get_current_view_info1 field changed- removed
Input schema / additionalPropertiesRemoved value: -false
15 tool updates
- First observed
ai_element_filter - First observed
color_elements - First observed
create_line_based_element - First observed
create_point_based_element - First observed
create_surface_based_element - First observed
delete_element - First observed
get_available_family_types - First observed
get_current_document_info - First observed
get_current_view_elements - First observed
get_current_view_info - First observed
get_selected_elements - First observed
open_document - First observed
operate_element - First observed
send_code_to_revit - First observed
tag_all_walls
TDQS
Scored across 15 tools
The tools have clear purposes but significant overlap exists. For example, get_current_view_elements and ai_element_filter both retrieve elements, with the latter being more intelligent but potentially redundant. Similarly, operate_element includes delete functionality that overlaps with delete_element, and get_current_document_info and get_current_view_info appear identical in description, causing confusion.
Most tools follow a consistent verb_noun pattern (e.g., create_line_based_element, delete_element, get_selected_elements), which is clear and predictable. However, there are minor deviations like open_document (lacks verb) and send_code_to_revit (uses 'to' instead of underscore), slightly breaking the pattern.
With 15 tools, the count is well-scoped for a Revit MCP server covering element creation, querying, deletion, and operations. Each tool serves a distinct role in the domain, and the number is neither too sparse nor overwhelming for typical Revit workflows.
The toolset provides strong coverage for core Revit operations, including CRUD for elements (create, delete), querying (get, filter), and specialized actions like tagging and coding. Minor gaps exist, such as lack of update tools for modifying existing elements beyond color or transparency, but agents can work around this using existing tools like operate_element.
Related MCP Connectors
Use AI models for chat, image, and video generation from Claude Code and other MCP hosts.
- mcpOAuthnet.todoist
Official Todoist MCP server for AI assistants to manage tasks, projects, and workflows.
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
- ZapierOAuthcom.zapier
Hosted MCP server connecting AI assistants to 9,000+ apps and 40,000+ actions via Zapier.
Related MCP Servers
- AlicenseAqualityFmaintenanceAllows AI to interact with Autodesk Revit via the MCP protocol, enabling retrieval of project data and automation of tasks like creating, modifying, and deleting elements.1365 npm458MIT
- AlicenseAqualityDmaintenanceA Python package that enables integration with Autodesk Revit through the Model Context Protocol, allowing users to send commands to Revit and automate interactions with building models.2731 PyPI39MIT
- AlicenseNot gradedqualityFmaintenanceThis project provides a robust integration between AI assistants and FreeCAD CAD software using the Model Context Protocol (MCP). It allows external applications to interact with FreeCAD through a standardized interface, offering multiple connection methods and specialized tools.24MIT
- AlicenseBqualityNot gradedmaintenanceEnables seamless communication between Claude AI and Autodesk Revit, allowing users to access and interact with Revit model information through natural language.618-