Custom Command Development - revit-mcp/revit-mcp-plugin GitHub Wiki

Custom Command Development

Note: This document is being written and will be improved in future updates.

Overview

This document will explain how to develop custom commands for revit-mcp-plugin so they can be called by AI conversation clients through the MCP protocol.

Command Development Process

Developing a custom command typically requires the following steps:

  1. Implement the command in revit-mcp-commandset
  2. Register the command in revit-mcp-plugin
  3. Register the command description in revit-mcp

Detailed Guide

1. Implementing the Command in revit-mcp-commandset

// to be added

2. Registering the Command in revit-mcp-plugin

// to be added

3. Registering the Command Description in revit-mcp

// to be added

Examples

// to be added

Best Practices

// to be added

Common Issues

// to be added