├── LICENSE ├── README.md ├── README_en.md ├── README_zh.md ├── imgs ├── cursor_config.png └── demo.gif ├── requirements.txt └── src ├── __init__.py ├── cad_controller.py ├── config.json ├── nlp_processor.py └── server.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daobataotie/CAD-MCP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daobataotie/CAD-MCP/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daobataotie/CAD-MCP/HEAD/README_en.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daobataotie/CAD-MCP/HEAD/README_zh.md -------------------------------------------------------------------------------- /imgs/cursor_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daobataotie/CAD-MCP/HEAD/imgs/cursor_config.png -------------------------------------------------------------------------------- /imgs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daobataotie/CAD-MCP/HEAD/imgs/demo.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daobataotie/CAD-MCP/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daobataotie/CAD-MCP/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/cad_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daobataotie/CAD-MCP/HEAD/src/cad_controller.py -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daobataotie/CAD-MCP/HEAD/src/config.json -------------------------------------------------------------------------------- /src/nlp_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daobataotie/CAD-MCP/HEAD/src/nlp_processor.py -------------------------------------------------------------------------------- /src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daobataotie/CAD-MCP/HEAD/src/server.py --------------------------------------------------------------------------------