Initial commit: RhinoMCP project structure
- MCP Server (Python) with full tool definitions for Rhino/Grasshopper - Rhino Plugin (C#) with HTTP server for command execution - Support for geometry creation, manipulation, boolean operations - Grasshopper integration: sliders, toggles, components, connections - MIT License, README with architecture documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
43
.gitignore
vendored
Normal file
43
.gitignore
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
venv/
|
||||
ENV/
|
||||
.env
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
|
||||
# C# / Visual Studio
|
||||
bin/
|
||||
obj/
|
||||
*.user
|
||||
*.suo
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
.vs/
|
||||
*.dll
|
||||
*.exe
|
||||
*.pdb
|
||||
*.rhp
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Project specific
|
||||
*.log
|
||||
temp/
|
||||
|
||||
# Keep examples
|
||||
!examples/*.gh
|
||||
!examples/*.3dm
|
||||
Reference in New Issue
Block a user