claude-cad 0.1.0__tar.gz → 0.1.2__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.0 → claude_cad-0.1.2}/INSTALL.md +32 -14
- {claude_cad-0.1.0/src/claude_cad.egg-info → claude_cad-0.1.2}/PKG-INFO +27 -2
- {claude_cad-0.1.0 → claude_cad-0.1.2}/README.md +26 -1
- {claude_cad-0.1.0 → claude_cad-0.1.2}/claude_desktop_config.json +1 -1
- {claude_cad-0.1.0 → claude_cad-0.1.2}/setup.py +2 -1
- {claude_cad-0.1.0 → claude_cad-0.1.2}/src/claude_cad/__init__.py +1 -1
- {claude_cad-0.1.0 → claude_cad-0.1.2/src/claude_cad.egg-info}/PKG-INFO +27 -2
- {claude_cad-0.1.0 → claude_cad-0.1.2}/src/claude_cad.egg-info/entry_points.txt +1 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/LICENSE +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/MANIFEST.in +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/examples/lego_brick.py +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/examples/simple_box.py +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/examples/text_to_model.py +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/pyproject.toml +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/requirements.txt +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/setup.cfg +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/src/claude_cad/mock_server.py +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/src/claude_cad/model_generator.py +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/src/claude_cad/server.py +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/src/claude_cad/utils.py +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/src/claude_cad.egg-info/SOURCES.txt +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/src/claude_cad.egg-info/dependency_links.txt +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/src/claude_cad.egg-info/requires.txt +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/src/claude_cad.egg-info/top_level.txt +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/tests/__init__.py +0 -0
- {claude_cad-0.1.0 → claude_cad-0.1.2}/tests/test_model_generator.py +0 -0
@@ -60,26 +60,44 @@ uv pip install -e .
|
|
60
60
|
|
61
61
|
## Configure Claude Desktop
|
62
62
|
|
63
|
-
To use Claude CAD with Claude, you need to update your Claude configuration file:
|
63
|
+
To use Claude CAD with Claude Desktop, you need to update your Claude configuration file:
|
64
64
|
|
65
65
|
1. Locate your Claude Desktop configuration file
|
66
66
|
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
67
67
|
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
68
68
|
- Linux: `~/.config/Claude/claude_desktop_config.json`
|
69
69
|
|
70
|
-
2.
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
}
|
82
|
-
|
70
|
+
2. Choose one of these configuration options:
|
71
|
+
|
72
|
+
### Option 1: Using Python directly
|
73
|
+
|
74
|
+
```json
|
75
|
+
{
|
76
|
+
"mcpServers": {
|
77
|
+
"claude_cad": {
|
78
|
+
"command": "python",
|
79
|
+
"args": ["-m", "claude_cad.server"],
|
80
|
+
"env": {}
|
81
|
+
}
|
82
|
+
}
|
83
|
+
}
|
84
|
+
```
|
85
|
+
|
86
|
+
### Option 2: Using uvx (Recommended)
|
87
|
+
|
88
|
+
For improved dependency management and reliability, use `uvx` (part of the uv toolkit):
|
89
|
+
|
90
|
+
```json
|
91
|
+
{
|
92
|
+
"mcpServers": {
|
93
|
+
"claude_cad": {
|
94
|
+
"command": "uvx",
|
95
|
+
"args": ["-m", "claude_cad.server"],
|
96
|
+
"env": {}
|
97
|
+
}
|
98
|
+
}
|
99
|
+
}
|
100
|
+
```
|
83
101
|
|
84
102
|
3. Restart Claude Desktop to apply the changes
|
85
103
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: claude_cad
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
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
|
@@ -82,7 +82,9 @@ For detailed installation instructions, see [INSTALL.md](INSTALL.md).
|
|
82
82
|
|
83
83
|
## Configuration
|
84
84
|
|
85
|
-
To use Claude CAD with Claude, you need to update your Claude configuration file:
|
85
|
+
To use Claude CAD with Claude Desktop, you need to update your Claude configuration file:
|
86
|
+
|
87
|
+
### Option 1: Using Python directly
|
86
88
|
|
87
89
|
```json
|
88
90
|
{
|
@@ -96,6 +98,29 @@ To use Claude CAD with Claude, you need to update your Claude configuration file
|
|
96
98
|
}
|
97
99
|
```
|
98
100
|
|
101
|
+
### Option 2: Using uvx (Recommended)
|
102
|
+
|
103
|
+
For improved dependency management, you can use `uvx` (part of the uv toolkit):
|
104
|
+
|
105
|
+
```json
|
106
|
+
{
|
107
|
+
"mcpServers": {
|
108
|
+
"claude_cad": {
|
109
|
+
"command": "uvx",
|
110
|
+
"args": ["-m", "claude_cad.server"],
|
111
|
+
"env": {}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
}
|
115
|
+
```
|
116
|
+
|
117
|
+
Locate your Claude Desktop configuration file at:
|
118
|
+
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
119
|
+
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
120
|
+
- Linux: `~/.config/Claude/claude_desktop_config.json`
|
121
|
+
|
122
|
+
After updating the configuration, restart Claude Desktop for the changes to take effect.
|
123
|
+
|
99
124
|
## Usage
|
100
125
|
|
101
126
|
Once installed and configured, you can ask Claude to create 3D models using natural language:
|
@@ -48,7 +48,9 @@ For detailed installation instructions, see [INSTALL.md](INSTALL.md).
|
|
48
48
|
|
49
49
|
## Configuration
|
50
50
|
|
51
|
-
To use Claude CAD with Claude, you need to update your Claude configuration file:
|
51
|
+
To use Claude CAD with Claude Desktop, you need to update your Claude configuration file:
|
52
|
+
|
53
|
+
### Option 1: Using Python directly
|
52
54
|
|
53
55
|
```json
|
54
56
|
{
|
@@ -62,6 +64,29 @@ To use Claude CAD with Claude, you need to update your Claude configuration file
|
|
62
64
|
}
|
63
65
|
```
|
64
66
|
|
67
|
+
### Option 2: Using uvx (Recommended)
|
68
|
+
|
69
|
+
For improved dependency management, you can use `uvx` (part of the uv toolkit):
|
70
|
+
|
71
|
+
```json
|
72
|
+
{
|
73
|
+
"mcpServers": {
|
74
|
+
"claude_cad": {
|
75
|
+
"command": "uvx",
|
76
|
+
"args": ["-m", "claude_cad.server"],
|
77
|
+
"env": {}
|
78
|
+
}
|
79
|
+
}
|
80
|
+
}
|
81
|
+
```
|
82
|
+
|
83
|
+
Locate your Claude Desktop configuration file at:
|
84
|
+
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
85
|
+
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
86
|
+
- Linux: `~/.config/Claude/claude_desktop_config.json`
|
87
|
+
|
88
|
+
After updating the configuration, restart Claude Desktop for the changes to take effect.
|
89
|
+
|
65
90
|
## Usage
|
66
91
|
|
67
92
|
Once installed and configured, you can ask Claude to create 3D models using natural language:
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="claude_cad",
|
5
|
-
version="0.1.
|
5
|
+
version="0.1.2",
|
6
6
|
packages=find_packages(where="src"),
|
7
7
|
package_dir={"": "src"},
|
8
8
|
install_requires=[
|
@@ -12,6 +12,7 @@ setup(
|
|
12
12
|
entry_points={
|
13
13
|
"console_scripts": [
|
14
14
|
"claude_cad=claude_cad.server:main",
|
15
|
+
"claude-cad=claude_cad.server:main",
|
15
16
|
],
|
16
17
|
},
|
17
18
|
author="Bronson Dunbar",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: claude_cad
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
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
|
@@ -82,7 +82,9 @@ For detailed installation instructions, see [INSTALL.md](INSTALL.md).
|
|
82
82
|
|
83
83
|
## Configuration
|
84
84
|
|
85
|
-
To use Claude CAD with Claude, you need to update your Claude configuration file:
|
85
|
+
To use Claude CAD with Claude Desktop, you need to update your Claude configuration file:
|
86
|
+
|
87
|
+
### Option 1: Using Python directly
|
86
88
|
|
87
89
|
```json
|
88
90
|
{
|
@@ -96,6 +98,29 @@ To use Claude CAD with Claude, you need to update your Claude configuration file
|
|
96
98
|
}
|
97
99
|
```
|
98
100
|
|
101
|
+
### Option 2: Using uvx (Recommended)
|
102
|
+
|
103
|
+
For improved dependency management, you can use `uvx` (part of the uv toolkit):
|
104
|
+
|
105
|
+
```json
|
106
|
+
{
|
107
|
+
"mcpServers": {
|
108
|
+
"claude_cad": {
|
109
|
+
"command": "uvx",
|
110
|
+
"args": ["-m", "claude_cad.server"],
|
111
|
+
"env": {}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
}
|
115
|
+
```
|
116
|
+
|
117
|
+
Locate your Claude Desktop configuration file at:
|
118
|
+
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
119
|
+
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
120
|
+
- Linux: `~/.config/Claude/claude_desktop_config.json`
|
121
|
+
|
122
|
+
After updating the configuration, restart Claude Desktop for the changes to take effect.
|
123
|
+
|
99
124
|
## Usage
|
100
125
|
|
101
126
|
Once installed and configured, you can ask Claude to create 3D models using natural language:
|
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
|