Skip to main content
Glama
sharafutdinovdi

Revit Model MCP

List Instances

revit_list_instances
Read-onlyIdempotent

Lists running Revit processes and their active documents, providing document and version details to help select a target instance for subsequent commands.

Instructions

List Revit processes and their active documents.

Returns a list of documentName, documentPath, revitVersion, processId and pluginResponding records; no matching instances return []. Local and SSH modes use add-in heartbeats with process fallback; fallback records have an empty document and pluginResponding=false. HTTP mode reports only its connected process; transport failures raise errors. Use this tool before choosing a unique document substring for other tools.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
documentNoCase-insensitive substring of the target active document title or file name; default null leaves requests unaddressed, so any instance may respond. Use a unique substring with multiple instances; revit_list_instances instead returns all matching instances, or all instances when omitted.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.1.1
    • addedInput schema / properties / document / description
      Added value: +"Case-insensitive substring of the target active document title or file name; default null leaves requests unaddressed, so any instance may respond. Use a unique substring with multiple instances; revit_list_instances instead returns all matching instances, or all instances when omitted."
  2. First observed

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description does not need to repeat safety. It adds valuable behavioral context: fallback mechanisms in Local/SSH modes, HTTP mode limitations, and error behavior on transport failures. It also clarifies what fallback records look like (empty document, pluginResponding=false). This goes beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, with key behavioral facts front-loaded (what it lists, then mode-specific behavior, then usage guidance). Sentences are efficient, though a bit dense. It avoids redundancy with the schema and annotations.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given an output schema exists, the description needn't explain return values in depth, but it does list main fields. It covers enough about behavior for an agent to decide when to call it and what to expect across modes. Minor missing: no explicit statement of idempotency, but that's covered by annotations. Overall, it is complete for this tool's complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema provides 100% coverage for the `document` parameter, including a detailed description. The description adds some context about using a unique substring, but that is also echoed in the schema. The description doesn't add significant meaning beyond the schema, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists Revit processes and their active documents, naming specific returned fieldsrelation to siblings. It lists specific data returned (documentName, documentPath, etc.), which is precise, but it does not explicitly differentiate from sibling tools beyond its listing nature.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description says 'Use this tool before choosing a unique document substring for other tools,' providing clear when-to-use guidance. It also explains the behavior of the `document` parameter partially in the description ('no matching instances return []'), but it doesn't explicitly state when NOT to use it in favor of a specific alternative. However, the contextual guidance is strong.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.