claude-cad 0.1.3__tar.gz → 0.1.4__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.
- {claude_cad-0.1.3/src/claude_cad.egg-info → claude_cad-0.1.4}/PKG-INFO +2 -2
- {claude_cad-0.1.3 → claude_cad-0.1.4}/requirements.txt +1 -1
- {claude_cad-0.1.3 → claude_cad-0.1.4}/setup.py +2 -2
- {claude_cad-0.1.3 → claude_cad-0.1.4}/src/claude_cad/server.py +4 -6
- {claude_cad-0.1.3 → claude_cad-0.1.4/src/claude_cad.egg-info}/PKG-INFO +2 -2
- {claude_cad-0.1.3 → claude_cad-0.1.4}/src/claude_cad.egg-info/requires.txt +1 -1
- {claude_cad-0.1.3 → claude_cad-0.1.4}/INSTALL.md +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/LICENSE +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/MANIFEST.in +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/README.md +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/claude_desktop_config.json +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/examples/lego_brick.py +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/examples/simple_box.py +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/examples/text_to_model.py +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/pyproject.toml +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/setup.cfg +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/src/claude_cad/__init__.py +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/src/claude_cad/mock_server.py +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/src/claude_cad/model_generator.py +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/src/claude_cad/utils.py +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/src/claude_cad.egg-info/SOURCES.txt +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/src/claude_cad.egg-info/dependency_links.txt +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/src/claude_cad.egg-info/entry_points.txt +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/src/claude_cad.egg-info/top_level.txt +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/tests/__init__.py +0 -0
- {claude_cad-0.1.3 → claude_cad-0.1.4}/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.
|
3
|
+
Version: 0.1.4
|
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
|
@@ -19,7 +19,7 @@ Requires-Python: >=3.9
|
|
19
19
|
Description-Content-Type: text/markdown
|
20
20
|
License-File: LICENSE
|
21
21
|
Requires-Dist: cadquery>=2.0.0
|
22
|
-
Requires-Dist: mcp
|
22
|
+
Requires-Dist: mcp>=1.6.0
|
23
23
|
Dynamic: author
|
24
24
|
Dynamic: author-email
|
25
25
|
Dynamic: classifier
|
@@ -1,2 +1,2 @@
|
|
1
1
|
cadquery>=2.0.0
|
2
|
-
mcp
|
2
|
+
mcp>=1.6.0
|
@@ -2,12 +2,12 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="claude_cad",
|
5
|
-
version="0.1.
|
5
|
+
version="0.1.4",
|
6
6
|
packages=find_packages(where="src"),
|
7
7
|
package_dir={"": "src"},
|
8
8
|
install_requires=[
|
9
9
|
"cadquery>=2.0.0",
|
10
|
-
"mcp
|
10
|
+
"mcp>=1.6.0",
|
11
11
|
],
|
12
12
|
entry_points={
|
13
13
|
"console_scripts": [
|
@@ -15,10 +15,9 @@ from pathlib import Path
|
|
15
15
|
from typing import Dict, List, Optional, Any, Union
|
16
16
|
|
17
17
|
# MCP SDK imports
|
18
|
-
#
|
18
|
+
# Import StdioTransport from the new location
|
19
19
|
from mcp.server import Server
|
20
|
-
|
21
|
-
from mcp.transports.stdio import StdioTransport
|
20
|
+
from mcp.server.stdio.stdio_server import stdio_server
|
22
21
|
from mcp.types import (
|
23
22
|
CallToolRequestSchema,
|
24
23
|
ListToolsRequestSchema,
|
@@ -448,9 +447,8 @@ class ClaudeCADServer:
|
|
448
447
|
|
449
448
|
async def run(self) -> None:
|
450
449
|
"""Start the CAD MCP server."""
|
451
|
-
# Use
|
452
|
-
|
453
|
-
await self.server.connect(transport)
|
450
|
+
# Use stdio_server function instead of StdioTransport
|
451
|
+
await stdio_server(self.server)
|
454
452
|
print("Claude CAD MCP server running", flush=True)
|
455
453
|
|
456
454
|
async def cleanup(self) -> None:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: claude_cad
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.4
|
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
|
@@ -19,7 +19,7 @@ Requires-Python: >=3.9
|
|
19
19
|
Description-Content-Type: text/markdown
|
20
20
|
License-File: LICENSE
|
21
21
|
Requires-Dist: cadquery>=2.0.0
|
22
|
-
Requires-Dist: mcp
|
22
|
+
Requires-Dist: mcp>=1.6.0
|
23
23
|
Dynamic: author
|
24
24
|
Dynamic: author-email
|
25
25
|
Dynamic: classifier
|
@@ -1,2 +1,2 @@
|
|
1
1
|
cadquery>=2.0.0
|
2
|
-
mcp
|
2
|
+
mcp>=1.6.0
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|