claude-cad 0.1.4__tar.gz → 0.1.5__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 (26) hide show
  1. {claude_cad-0.1.4/src/claude_cad.egg-info → claude_cad-0.1.5}/PKG-INFO +1 -1
  2. {claude_cad-0.1.4 → claude_cad-0.1.5}/setup.py +1 -1
  3. {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad/server.py +2 -2
  4. {claude_cad-0.1.4 → claude_cad-0.1.5/src/claude_cad.egg-info}/PKG-INFO +1 -1
  5. {claude_cad-0.1.4 → claude_cad-0.1.5}/INSTALL.md +0 -0
  6. {claude_cad-0.1.4 → claude_cad-0.1.5}/LICENSE +0 -0
  7. {claude_cad-0.1.4 → claude_cad-0.1.5}/MANIFEST.in +0 -0
  8. {claude_cad-0.1.4 → claude_cad-0.1.5}/README.md +0 -0
  9. {claude_cad-0.1.4 → claude_cad-0.1.5}/claude_desktop_config.json +0 -0
  10. {claude_cad-0.1.4 → claude_cad-0.1.5}/examples/lego_brick.py +0 -0
  11. {claude_cad-0.1.4 → claude_cad-0.1.5}/examples/simple_box.py +0 -0
  12. {claude_cad-0.1.4 → claude_cad-0.1.5}/examples/text_to_model.py +0 -0
  13. {claude_cad-0.1.4 → claude_cad-0.1.5}/pyproject.toml +0 -0
  14. {claude_cad-0.1.4 → claude_cad-0.1.5}/requirements.txt +0 -0
  15. {claude_cad-0.1.4 → claude_cad-0.1.5}/setup.cfg +0 -0
  16. {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad/__init__.py +0 -0
  17. {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad/mock_server.py +0 -0
  18. {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad/model_generator.py +0 -0
  19. {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad/utils.py +0 -0
  20. {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad.egg-info/SOURCES.txt +0 -0
  21. {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad.egg-info/dependency_links.txt +0 -0
  22. {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad.egg-info/entry_points.txt +0 -0
  23. {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad.egg-info/requires.txt +0 -0
  24. {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad.egg-info/top_level.txt +0 -0
  25. {claude_cad-0.1.4 → claude_cad-0.1.5}/tests/__init__.py +0 -0
  26. {claude_cad-0.1.4 → claude_cad-0.1.5}/tests/test_model_generator.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude_cad
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: An MCP plugin for creating 3D models with Claude AI using CadQuery
5
5
  Home-page: https://github.com/bronson/claude_cad
6
6
  Author: Bronson Dunbar
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="claude_cad",
5
- version="0.1.4",
5
+ version="0.1.5",
6
6
  packages=find_packages(where="src"),
7
7
  package_dir={"": "src"},
8
8
  install_requires=[
@@ -15,9 +15,9 @@ from pathlib import Path
15
15
  from typing import Dict, List, Optional, Any, Union
16
16
 
17
17
  # MCP SDK imports
18
- # Import StdioTransport from the new location
18
+ # Import stdio_server function from the correct location
19
19
  from mcp.server import Server
20
- from mcp.server.stdio.stdio_server import stdio_server
20
+ from mcp.server.stdio import stdio_server
21
21
  from mcp.types import (
22
22
  CallToolRequestSchema,
23
23
  ListToolsRequestSchema,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude_cad
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: An MCP plugin for creating 3D models with Claude AI using CadQuery
5
5
  Home-page: https://github.com/bronson/claude_cad
6
6
  Author: Bronson Dunbar
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes