这个项目是一个基于Model Context Protocol (MCP)的AutoCAD集成服务器,它允许通过自然语言与AutoCAD进行交互。通过这个服务器,用户可以使用Claude等大型语言模型来创建、修改和分析AutoCAD图纸,同时还可以存储和查询CAD元素的相关数据。目前制作参考学习,仅实现端到端之间的通信,具体工具函数尚未晚上
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"easy-autocad": {
"args": [
"C:/path/to/project/server.py"
],
"command": "C:/path/to/project/.venv/Scripts/python.exe"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
⚠️ 本项目目前维护精力有限,欢迎有兴趣的开发者参与协作! > ⚠️ Currently this project is not actively maintained due to time constraints. I would be very happy to collaborate with anyone interested in co-maintaining or extending it.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in design
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
AI image generation and editing with prompt optimization and quality presets. Powered by Nano Banana
Coinbase Design System - MCP Server
MCP Security Weekly
Get CVE alerts and security updates for Easy MCP AutoCad and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
⚠️ 本项目目前维护精力有限,欢迎有兴趣的开发者参与协作!
⚠️ Currently this project is not actively maintained due to time constraints. I would be very happy to collaborate with anyone interested in co-maintaining or extending it.
基于 Model Context Protocol (MCP) 的 AutoCAD 集成服务器,允许通过 Claude 等大型语言模型 (LLM) 与 AutoCAD 进行自然语言交互。
An AutoCAD integration server based on Model Context Protocol (MCP), enabling natural language interaction with AutoCAD via large language models like Claude.
🔗 项目在 MseeP.ai 展示 / Referenced on MseeP.ai:
https://mseep.ai/app/zh19980811-easy-mcp-autocad
git clone https://github.com/yourusername/autocad-mcp-server.git
cd autocad-mcp-server
Windows:
python -m venv .venv
.venv\Scripts\activate
macOS / Linux:
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pyinstaller --onefile server.py
python server.py
编辑配置文件 / Edit config file:
Windows 路径 / Config path on Windows:
%APPDATA%\Claude\claude_desktop_config.json
推荐配置 (源码运行) / Recommended Config (Run from source):
💡 请将
path/to/project替换为您实际的项目绝对路径。 💡 Please replacepath/to/projectwith your actual absolute project path.
{
"mcpServers": {
"easy-autocad": {
"command": "C:/path/to/project/.venv/Scripts/python.exe",
"args": [
"C:/path/to/project/server.py"
]
}
}
}
注意 / Note:
- 请使用正斜杠
/或双反斜杠\\作为路径分隔符。python.exe必须指向.venv虚拟环境中的解释器。
| 功能 / Function | 描述 / Description |
|---|---|
create_new_drawing | 创建新的图纸 / Create a new drawing |
draw_line | 画直线 / Draw a line |
draw_polyline | 画多段线 / Draw a polyline |
draw_rectangle | 画矩形 / Draw a rectangle |
draw_circle | 画圆 / Draw a circle |
draw_text | 添加文字 / Add text annotation |
create_layer | 创建或修改图层 / Create or modify layer |
move_entity | 移动实体 / Move entity |
rotate_entity | 旋转实体 / Rotate entity |
copy_entity | 复制实体 / Copy entity |
highlight_entity | 高亮显示实体 / Highlight entity |
highlight_text_matches | 高亮显示匹配文本 / Highlight matching text |
scan_all_entities | 扫描并入库 / Scan and save entities |
| `count_t |