rhinomcp 0.1.3.4__tar.gz → 0.1.3.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/PKG-INFO +3 -2
  2. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/pyproject.toml +3 -2
  3. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/server.py +0 -1
  4. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp.egg-info/PKG-INFO +3 -2
  5. rhinomcp-0.1.3.6/src/rhinomcp.egg-info/requires.txt +2 -0
  6. rhinomcp-0.1.3.4/src/rhinomcp.egg-info/requires.txt +0 -1
  7. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/README.md +0 -0
  8. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/setup.cfg +0 -0
  9. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/__init__.py +0 -0
  10. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/prompts/assert_general_strategy.py +0 -0
  11. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/static/rhinoscriptsyntax.py +0 -0
  12. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/create_layer.py +0 -0
  13. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/create_object.py +0 -0
  14. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/create_objects.py +0 -0
  15. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/delete_layer.py +0 -0
  16. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/delete_object.py +0 -0
  17. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/execute_rhinoscript_python_code.py +0 -0
  18. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/get_document_info.py +0 -0
  19. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/get_object_info.py +0 -0
  20. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/get_or_set_current_layer.py +0 -0
  21. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/get_rhinoscript_python_code_guide.py +0 -0
  22. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/get_rhinoscript_python_function_names.py +0 -0
  23. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/get_selected_objects_info.py +0 -0
  24. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/modify_object.py +0 -0
  25. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/modify_objects.py +0 -0
  26. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp/tools/select_objects.py +0 -0
  27. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp.egg-info/SOURCES.txt +0 -0
  28. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp.egg-info/dependency_links.txt +0 -0
  29. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp.egg-info/entry_points.txt +0 -0
  30. {rhinomcp-0.1.3.4 → rhinomcp-0.1.3.6}/src/rhinomcp.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rhinomcp
3
- Version: 0.1.3.4
3
+ Version: 0.1.3.6
4
4
  Summary: Rhino integration through the Model Context Protocol
5
5
  Author-email: Jingcheng Chen <mail@jchen.ch>
6
6
  License: MIT
@@ -11,7 +11,8 @@ Classifier: License :: OSI Approved :: MIT License
11
11
  Classifier: Operating System :: OS Independent
12
12
  Requires-Python: >=3.10
13
13
  Description-Content-Type: text/markdown
14
- Requires-Dist: mcp[cli]>=1.3.0
14
+ Requires-Dist: fastmcp>=2.11.2
15
+ Requires-Dist: mcp[cli]>=1.12.4
15
16
 
16
17
  # RhinoMCP - Rhino Model Context Protocol Integration
17
18
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "rhinomcp"
3
- version = "0.1.3.4"
3
+ version = "0.1.3.6"
4
4
  description = "Rhino integration through the Model Context Protocol"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -14,7 +14,8 @@ classifiers = [
14
14
  "Operating System :: OS Independent",
15
15
  ]
16
16
  dependencies = [
17
- "mcp[cli]>=1.3.0",
17
+ "fastmcp>=2.11.2",
18
+ "mcp[cli]>=1.12.4",
18
19
  ]
19
20
 
20
21
  [project.scripts]
@@ -191,7 +191,6 @@ async def server_lifespan(server: FastMCP) -> AsyncIterator[Dict[str, Any]]:
191
191
  # Create the MCP server with lifespan support
192
192
  mcp = FastMCP(
193
193
  "RhinoMCP",
194
- description="Rhino integration through the Model Context Protocol",
195
194
  lifespan=server_lifespan
196
195
  )
197
196
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rhinomcp
3
- Version: 0.1.3.4
3
+ Version: 0.1.3.6
4
4
  Summary: Rhino integration through the Model Context Protocol
5
5
  Author-email: Jingcheng Chen <mail@jchen.ch>
6
6
  License: MIT
@@ -11,7 +11,8 @@ Classifier: License :: OSI Approved :: MIT License
11
11
  Classifier: Operating System :: OS Independent
12
12
  Requires-Python: >=3.10
13
13
  Description-Content-Type: text/markdown
14
- Requires-Dist: mcp[cli]>=1.3.0
14
+ Requires-Dist: fastmcp>=2.11.2
15
+ Requires-Dist: mcp[cli]>=1.12.4
15
16
 
16
17
  # RhinoMCP - Rhino Model Context Protocol Integration
17
18
 
@@ -0,0 +1,2 @@
1
+ fastmcp>=2.11.2
2
+ mcp[cli]>=1.12.4
@@ -1 +0,0 @@
1
- mcp[cli]>=1.3.0
File without changes
File without changes