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.
- {claude_cad-0.1.4/src/claude_cad.egg-info → claude_cad-0.1.5}/PKG-INFO +1 -1
- {claude_cad-0.1.4 → claude_cad-0.1.5}/setup.py +1 -1
- {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad/server.py +2 -2
- {claude_cad-0.1.4 → claude_cad-0.1.5/src/claude_cad.egg-info}/PKG-INFO +1 -1
- {claude_cad-0.1.4 → claude_cad-0.1.5}/INSTALL.md +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/LICENSE +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/MANIFEST.in +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/README.md +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/claude_desktop_config.json +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/examples/lego_brick.py +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/examples/simple_box.py +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/examples/text_to_model.py +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/pyproject.toml +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/requirements.txt +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/setup.cfg +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad/__init__.py +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad/mock_server.py +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad/model_generator.py +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad/utils.py +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad.egg-info/SOURCES.txt +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad.egg-info/dependency_links.txt +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad.egg-info/entry_points.txt +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad.egg-info/requires.txt +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/src/claude_cad.egg-info/top_level.txt +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/tests/__init__.py +0 -0
- {claude_cad-0.1.4 → claude_cad-0.1.5}/tests/test_model_generator.py +0 -0
@@ -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
|
18
|
+
# Import stdio_server function from the correct location
|
19
19
|
from mcp.server import Server
|
20
|
-
from mcp.server.stdio
|
20
|
+
from mcp.server.stdio import stdio_server
|
21
21
|
from mcp.types import (
|
22
22
|
CallToolRequestSchema,
|
23
23
|
ListToolsRequestSchema,
|
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
|
File without changes
|
File without changes
|