You signed in with another tab or window. Reload
to refresh your session. You signed out in another tab or window. Reload
to refresh your session. You switched accounts on another tab or window. Reload
to refresh your session. Dismiss alert
always-tinkering / rhinoMcpServer Public
RhinoMCP connects Rhino to Claude AI through the Model Context Protocol (MCP), enabling AI-assisted 3D modeling and architectural design.
16 stars
1 fork
Branches
Tags
Activity
Notifications
You must be signed in to change notification settings
main
Go to file
Code
| Name | | Name | Last commit message | Last commit date |
| --- | --- | --- | --- |
| Latest commit
-------------
elemental-Andrew
Implement GetSceneContext tests for RhinoUtilities to validate scene …
Mar 23, 2025
67e8896
· Mar 23, 2025
History
-------
35 Commits
| | |
| RhinoMcpPlugin.Tests | | RhinoMcpPlugin.Tests | Implement GetSceneContext tests for RhinoUtilities to validate scene … | Mar 23, 2025 |
| RhinoMcpPlugin | | RhinoMcpPlugin | Clean repository for smaller push | Mar 15, 2025 |
| logs | | logs | Update .gitignore and remove log files from tracking | Mar 17, 2025 |
| scripts | | scripts | Add unified logging system with centralized log management and improv… | Mar 17, 2025 |
| src | | src | Add unified logging system with centralized log management and improv… | Mar 17, 2025 |
| .gitignore | | .gitignore | Update .gitignore and remove log files from tracking | Mar 17, 2025 |
| LOGGING.md | | LOGGING.md | Add unified logging system with centralized log management and improv… | Mar 17, 2025 |
| NLog.config | | NLog.config | Add Rhino plugin improvements with enhanced logging and null referenc… | Mar 17, 2025 |
| README.md | | README.md | Add system architecture diagram and documentation | Mar 21, 2025 |
| RHINO_PLUGIN_UPDATE.md | | RHINO_PLUGIN_UPDATE.md | Add Rhino plugin improvements with enhanced logging and null referenc… | Mar 17, 2025 |
| RhinoPluginFixImplementation.cs | | RhinoPluginFixImplementation.cs | Add Rhino plugin improvements with enhanced logging and null referenc… | Mar 17, 2025 |
| RhinoPluginLoggingSpec.md | | RhinoPluginLoggingSpec.md | Add Rhino plugin improvements with enhanced logging and null referenc… | Mar 17, 2025 |
| code_architecture.md | | code_architecture.md | Add system architecture diagram and documentation | Mar 21, 2025 |
| combined_mcp_server.py | | combined_mcp_server.py | Add unified logging system with centralized log management and improv… | Mar 17, 2025 |
| diagnose_rhino_connection.py | | diagnose_rhino_connection.py | Add unified logging system with centralized log management and improv… | Mar 17, 2025 |
| log_manager.py | | log_manager.py | Add unified logging system with centralized log management and improv… | Mar 17, 2025 |
| mcpLLM.txt | | mcpLLM.txt | Implemented robust file-based logging system | Mar 15, 2025 |
| run-combined-server.sh | | run-combined-server.sh | Add unified logging system with centralized log management and improv… | Mar 17, 2025 |
| View all files | | |
⚠️ UNDER CONSTRUCTION ⚠️
This project is currently under active development and is not yet in working order. The Rhino plugin is experiencing issues with creating objects. We are actively seeking support from the community to help resolve these issues. If you have experience with Rhino API development, C# plugins, or MCP integration, please consider contributing. Contact us by opening an issue on GitHub.
A Model Context Protocol (MCP) server implementation for Rhino 3D, allowing Claude to create and manipulate 3D objects.
This project implements an MCP server for Rhino 3D that enables AI assistants like Claude to interact with Rhino through the Model Context Protocol. The server allows for the creation and manipulation of 3D objects directly from the AI interface.
The system consists of Python components that implement the MCP server and C# components that integrate with Rhino. Here's an overview of how the system components interact:
Loading
graph TD
%% Client Applications
client[Client Applications] --> socketProxy
%% Socket Proxy
subgraph "Python Socket Proxy"
socketProxy\[socket\_proxy.py\] --> daemonServer
end
%% Daemon Server
subgraph "Python Daemon Server"
daemonServer\[daemon\_mcp\_server.py\] --> combinedServer
end
%% Combined MCP Server
subgraph "Python Combined MCP Server"
combinedServer\[combined\_mcp\_server.py\]
mcp\[FastMCP\] --> tools
combinedServer --> mcp
combinedServer --> rhinoConn
subgraph "MCP Tools"
tools\[MCP Tool Methods\]
end
rhinoConn\[RhinoConnection\]
end
%% Rhino Plugin Components
subgraph "C# Rhino Plugin"
rhinoPlugin\[RhinoMcpPlugin.cs\]
socketServer\[RhinoSocketServer.cs\]
utilities\[RhinoUtilities.cs\]
commands\[RhinoMcpCommand.cs\]
rhinoPlugin --> socketServer
rhinoPlugin --> commands
socketServer --> utilities
end
%% Connections between components
rhinoConn <==> socketServer
%% Logger Components
subgraph "Logging System"
logManager\[log\_manager.py\]
nlogConfig\[NLog.config\]
end
combinedServer --> logManager
rhinoPlugin --> nlogConfig
%% Connection to Rhino
rhino\[Rhino 3D Software\]
rhinoPlugin --> rhino
classDef pythonClass fill:#3572A5,color:white;
classDef csharpClass fill:#178600,color:white;
classDef rhinoClass fill:#555555,color:white;
class socketProxy,daemonServer,combinedServer,mcp,tools,rhinoConn,logManager pythonClass;
class rhinoPlugin,socketServer,utilities,commands csharpClass;
class rhino rhinoClass;
For more detailed information about the system architecture, including component descriptions and data flow, see code_architecture.md
.
There are several implementations available:
Combined MCP Server (Recommended):
combined_mcp_server.py
- Direct implementation that uses stdin/stdout for communicationSocket-based Servers:
daemon_mcp_server.py
- Background server that receives commands via socket connection
socket_proxy.py
- Proxy that forwards commands from stdin to the daemon server and backStandalone Server:
standalone-mcp-server.py
- Original standalone implementation
We now have a unified server launcher that allows you to run any of the server implementations:
./server_launcher.sh [mode]
Available modes:
combined
(default) - Run the combined MCP serverstandalone
- Run the standalone MCP serverdaemon
- Run the daemon MCP serversocket-proxy
- Run the socket proxydirect
- Run both daemon and socket proxylogs
- View recent logsmonitor
- Monitor logs in real-timeerrors
- View recent errorshelp
- Show help messageExamples:
# Run the combined server (recommended)
./server_launcher.sh combined
# Or simply
./server_launcher.sh
# Run the socket-based approach (daemon + proxy)
./server_launcher.sh direct
# Monitor logs in real-time
./server_launcher.sh monitor
The server provides several tools for 3D modeling:
If you encounter connection issues:
Make sure no old servers are running:
shell
./server_launcher.sh help # This will clean up existing processes
Check the log files:
shell
./server_launcher.sh logs # View logs
./server_launcher.sh errors # View errors
Restart Claude Desktop completely
This project is released under the MIT License. See the LICENSE file for details.
The system features a unified logging framework that centralizes logs from all components:
All logs follow a consistent format and are stored in the logs/
directory with separate subdirectories for each component.
A log management tool is provided that offers powerful capabilities for viewing, monitoring, and analyzing logs:
# View logs
./server_launcher.sh logs
# Monitor logs in real-time
./server_launcher.sh monitor
# View errors with context
./server_launcher.sh errors
# Generate error reports (using the log manager directly)
./log_manager.py report
For detailed information on using the logging system, see LOGGING.md
.
combined_mcp_server.py
: Main MCP server implementationdiagnose_rhino_connection.py
: Diagnostic tool for testing Rhino connectionlog_manager.py
: Tool for managing and analyzing logsserver_launcher.sh
: Unified script to start any server implementationlogs/
: Directory containing all logscombined_mcp_server.py
fileRhinoMCP connects Rhino to Claude AI through the Model Context Protocol (MCP), enabling AI-assisted 3D modeling and architectural design.
No releases published
No packages published
You can’t perform that action at this time.