autocad-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@autocad-mcpDraw a line from (0,0) to (10,10)"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AutoCAD MCP Server
Máy chủ MCP cho tự động hóa AutoCAD LT và tạo DXF headless.
Một API, hai backend vẽ và hai transport kết nối:
Tùy chọn | Ghi chú | |
Backend | File IPC | Windows + AutoCAD LT 2024+; điều khiển qua ActiveX/COM + AutoLISP |
ezdxf | Mọi nền tảng; DXF in-memory, không cần AutoCAD | |
Transport | stdio (mặc định) | Claude Desktop, Claude Code, client MCP cục bộ |
streamable-http | ChatGPT Developer mode / remote MCP qua HTTPS tunnel |
Server cung cấp 8 công cụ (drawing, entity, layer, block, annotation, pid, view, system) với dispatch theo operation. Phiên bản runtime: 3.1 (LISP dispatcher reliability v3.2).
Prerequisites
Backend File IPC (AutoCAD thật)
Windows 10/11 (không dùng WSL Python cho File IPC)
AutoCAD LT 2024+ trên Windows — AutoLISP chỉ có từ LT 2024; AutoCAD LT cho Mac không hỗ trợ AutoLISP
Python 3.10+ (native Windows)
uv package manager
Backend ezdxf (headless)
Chạy trên Linux, macOS, WSL hoặc Windows — không cần AutoCAD, chỉ tạo/sửa DXF offline.
Quick Start
1. Clone và cài đặt
git clone https://github.com/sontakmtp-cell/autocad-mcp.git
cd autocad-mcp
uv sync2. Auto-load LISP dispatcher (mỗi document)
State AutoLISP thuộc từng bản vẽ. Load mcp_dispatch.lsp một lần không đủ khi mở/tạo DWG mới. Cấu hình startup theo document:
Thêm
<repo>/lisp-codevào Support File Search Path.Thêm cùng thư mục vào
TRUSTEDPATHS. Không tắtSECURELOAD.Copy
lisp-code/acadltdoc.lsp.examplethànhacadltdoc.lsptrong một Support File Search Path.Restart AutoCAD LT, mở bản vẽ. Mỗi document nên in:
=== MCP Dispatch v3.2 reliability overrides loaded ===Example dùng (findfile "mcp_dispatch.lsp") rồi (load ...), không hard-code path máy. Startup Suite / APPLOAD lặp lại không cần. Nếu document đang active thiếu dispatcher, MCP báo dispatcher_missing_in_active_document — server không tự mở APPLOAD.
3. Cấu hình MCP client (stdio)
Ví dụ claude_desktop_config.json:
{
"mcpServers": {
"autocad-mcp": {
"command": "C:\\path\\to\\autocad-mcp\\.venv\\Scripts\\python.exe",
"args": ["-m", "autocad_mcp"],
"env": { "AUTOCAD_MCP_BACKEND": "auto" }
}
}
}commandphải trỏ tới Windows Python trong venvKhông dùng WSL Python khi cần File IPC
Client chạy trong WSL
Khởi động server qua cmd.exe + Windows Python:
{
"mcpServers": {
"autocad-mcp": {
"type": "stdio",
"command": "cmd.exe",
"args": [
"/d",
"/s",
"/c",
"cd /d C:\\path\\to\\autocad-mcp && .venv\\Scripts\\python.exe -m autocad_mcp"
],
"env": { "AUTOCAD_MCP_BACKEND": "auto" }
}
}
}4. Kiểm tra
Từ MCP client:
system(operation="status")backend: "file_ipc"— AutoCAD đang chạy và được phát hiệnbackend: "ezdxf"— chế độ headless
Diagnostics bổ sung:
system(operation="health")
system(operation="tool_manifest")
system(operation="runtime")Transport HTTP (ChatGPT / remote)
Transport mặc định vẫn là stdio. Để mở MCP qua mạng:
Profile | Auth | Mục đích |
| — | Chỉ local; stdio hoặc HTTP không remote policy |
| No Auth ( | Demo ngắn hạn, chỉ operation đọc allowlist |
| OAuth 2.1 / OIDC | Remote thật (ChatGPT, tunnel HTTPS) |
Dev demo (No Authentication)
$env:AUTOCAD_MCP_BACKEND = "ezdxf" # hoặc auto / file_ipc
$env:AUTOCAD_MCP_TRANSPORT = "streamable-http"
$env:AUTOCAD_MCP_HOST = "127.0.0.1"
$env:AUTOCAD_MCP_PORT = "8765"
$env:AUTOCAD_MCP_PATH = "/mcp"
$env:AUTOCAD_MCP_REMOTE_PROFILE = "dev"
$env:AUTOCAD_MCP_AUTH_MODE = "none"
$env:AUTOCAD_MCP_ALLOW_NO_AUTH = "1"
$env:AUTOCAD_MCP_ALLOWED_HOSTS = "127.0.0.1"
uv run python -m autocad_mcpHoặc dùng script tunnel Phase 3:
powershell -ExecutionPolicy Bypass -File .\scripts\run-phase3-dev.ps1Production OAuth + ChatGPT
Server là resource server (không tự host login). Cần OIDC provider (Auth0, Okta, Cognito, …) phát hành JWT + JWKS.
powershell -ExecutionPolicy Bypass -File .\scripts\run-phase4-oauth.ps1 `
-PublicBaseUrl "https://cad.example.com" `
-OAuthIssuer "https://issuer.example" `
-OAuthAudience "https://cad.example.com"Endpoint MCP:
https://cad.example.com/mcpMetadata:
https://cad.example.com/.well-known/oauth-protected-resourceScopes:
autocad.read,autocad.writeexecute_lispmặc định bị chặn trên mọi remote profile; chỉ bật khi setAUTOCAD_MCP_ALLOW_EXECUTE_LISP=1(rủi ro cao — AutoLISP tùy ý trên máy host)
Kết nối ChatGPT (Windows — khuyến nghị)
ChatGPT gọi MCP qua HTTPS công khai. MCP chỉ bind 127.0.0.1:8765; cần Cloudflare named tunnel (không dùng Quick Tunnel *.trycloudflare.com cho OAuth domain cố định).
Cài cloudflared (một lần):
winget install --id Cloudflare.cloudflaredMỗi phiên làm việc — 2 cửa sổ:
Cửa sổ | File | Việc |
1 |
| MCP OAuth production trên |
2 |
| Login Cloudflare (lần đầu) → tạo tunnel/config/DNS → |
start_cloudflare_tunnel.bat gọi scripts/setup-cloudflare-tunnel.ps1:
Mở browser / in link Cloudflare login nếu chưa có
~\.cloudflared\cert.pemChọn zone domain (ví dụ
kythuatvang.com) → AuthorizeTạo/chọn named tunnel, ghi
config.yml(hostname→http://127.0.0.1:8765)Route DNS (ghi đè record cũ bằng CNAME tunnel nếu cần)
Chạy tunnel (giữ cửa sổ mở)
URL gắn vào ChatGPT Developer mode (OAuth):
https://cad.kythuatvang.com/mcp(Wrapper start_mcp_chatgpt.bat đang cấu hình site-specific cho domain/issuer Auth0 của repo này — chỉnh bat/script nếu dùng domain khác.)
Kiểm tra public trước khi connect ChatGPT:
curl.exe -sS -i "https://cad.kythuatvang.com/.well-known/oauth-protected-resource"
# kỳ vọng: 200 + JSON scopes/issuer
curl.exe -sS -i "https://cad.kythuatvang.com/mcp"
# kỳ vọng: 401 khi chưa có token (OAuth bật)HTTP | Ý nghĩa |
530 | Tunnel chưa |
502 | Tunnel OK nhưng MCP ( |
401 trên | Đúng — client phải login OAuth |
200 metadata | Resource server reachable |
Tuỳ chọn PowerShell:
# Chỉ setup, không giữ tunnel
powershell -ExecutionPolicy Bypass -File .\scripts\setup-cloudflare-tunnel.ps1 -SkipRun
# Hostname / tunnel name tuỳ chỉnh
powershell -ExecutionPolicy Bypass -File .\scripts\setup-cloudflare-tunnel.ps1 `
-Hostname "cad.example.com" -TunnelName "autocad-mcp"Chi tiết OAuth/policy: docs/phase2-remote-policy.md, docs/phase4-oauth.md, docs/ke-hoach-chatgpt-http-bridge.md.
AUTOCAD_MCP_TRANSPORT=sseđược nhận trong config nhưng chưa implement — dùngstdiohoặcstreamable-http.
Tools
Mỗi tool nhận operation (string) và thường có data (object) + include_screenshot (bool).
drawing — Quản lý file bản vẽ
Operation | Mô tả | File IPC | ezdxf |
| Bản vẽ mới / reset | Yes | Yes |
| Mở bản vẽ | Yes | Yes (DXF) |
| Extents, entity, layer, block | Yes | Yes |
| Lưu ( | Yes | Yes |
| Xuất DXF | Yes | Yes |
| Xuất PDF | Yes | No |
| Xóa đối tượng không dùng | Yes | Yes |
| Đọc biến hệ thống | Yes | Yes |
| Hoàn tác / làm lại | Yes | No |
entity — Đối tượng hình học
Tạo: create_line, create_circle, create_polyline, create_rectangle, create_arc, create_ellipse, create_mtext, create_hatch
Đọc: list, count, get
Sửa: copy, move, rotate, scale, mirror, offset*, array, fillet*, chamfer*, erase
* offset, fillet, chamfer chỉ File IPC.
layer — Layer
list, create, set_current, set_properties, freeze, thaw, lock, unlock
block — Block
Operation | File IPC | ezdxf |
| Yes | Yes |
| Yes | Yes |
| Yes | Yes |
| Yes | Yes |
| Yes | Yes |
| No | Yes |
annotation — Chú thích & auto-dimension
Cơ bản
create_textcreate_dimension_linear/aligned/angular/radiuscreate_leader
Workflow dimension tự động (part-aware)
Operation | Vai trò |
| Gom geometry 2D thành |
| Preview plan |
| Ghi plan đã duyệt (một Undo group trên File IPC) |
| Lối tắt detect → plan → commit |
| Ghi nhiều dimension một request / một Undo group |
|
|
| Kiểm tra chất lượng bố trí (read-only) |
| Sửa an toàn theo |
Selector cho plan/auto (chọn một): target_part_id | entity_ids | region | selection: "current".
Profile built-in: mechanical_mm, mechanical_inch, iso_simple. Profile tùy chỉnh mặc định lưu tại %LOCALAPPDATA%\autocad-mcp\dimension_profiles.json (hoặc AUTOCAD_MCP_DIMENSION_PROFILES).
Chi tiết và ví dụ JSON: docs/auto-dimension.md.
pid — P&ID (thư viện CTO)
setup_layers, insert_symbol, list_symbols, draw_process_line, connect_equipment, add_flow_arrow, add_equipment_tag, add_line_number, insert_valve, insert_instrument, insert_pump, insert_tank
Cần cài thư viện CAD Tools Online vào:
C:\PIDv4-CTO\view — Viewport & screenshot
Operation | Mô tả |
| Zoom toàn bộ |
| Zoom cửa sổ |
| Chụp PNG |
File IPC: Win32
PrintWindow(kể cả khi AutoCAD minimize)ezdxf: matplotlib render
system — Server
Operation | Mô tả |
| Backend, capabilities |
| Health check nhanh (có |
| Platform, Python path, backend env |
| Tools đã đăng ký, annotation ops, feature status |
| Re-init backend |
| Chạy AutoLISP tùy ý — File IPC; remote cần |
Ví dụ execute_lisp:
system(operation="execute_lisp", data={"code": "(+ 1 2)"})Architecture
MCP Client (Claude / ChatGPT / …)
│
├── stdio (JSON-RPC) ← mặc định
└── streamable-http (/mcp) ← remote + tunnel HTTPS
│
▼
remote policy / OAuth / path guard
│
▼
Python MCP Server (autocad_mcp 3.1)
│
├── File IPC Backend (Windows)
│ │ C:/temp/*session*/*request*.json
│ ▼
│ mcp_dispatch.lsp (AutoCAD LT)
│ + auto_dimension*.lsp
│
└── ezdxf Backend
▼
in-memory DXFFile IPC
Route expression whitelist qua ActiveX: ưu tiên
Document.PostCommand, fallback tường minhDocument.SendCommandKhông dùng keyboard, clipboard, focus hay
WM_CHARTrước khi gửi: kiểm tra
IsQuiescent/CMDACTIVE→autocad_busynếu user đang có lệnh (MCP không gửi ESC)Request file mang process/session ID + request ID; LISP mở đúng file đó
Mã lỗi ổn định: docs/file-ipc-error-model.md.
Checklist tay: docs/file-ipc-manual-test.md.
Environment Variables
Backend & IPC
Variable | Default | Mô tả |
|
|
|
|
| Thư mục file IPC |
|
| Timeout giây (clamp 1–300) |
| (auto) | Override COM ProgID AutoCAD đang chạy |
|
| Tắt đính kèm screenshot |
|
| Path file profile dimension tùy chỉnh |
| — | Ghi snapshot debug backend detection |
| (auto) | Nhãn entrypoint trong |
Nếu đổi AUTOCAD_MCP_IPC_DIR, cập nhật tương ứng biến *mcp-ipc-dir* trong lisp-code/mcp_dispatch.lsp.
Transport & remote
Variable | Default | Mô tả |
|
|
|
|
| Bind host HTTP |
|
| Port HTTP |
|
| Path MCP endpoint |
|
| Stateless HTTP mode |
|
|
|
|
|
|
|
| Bật No Auth (chỉ với profile |
|
| Cho phép |
| — | Host allowlist ( |
| — | Thư mục file cho open/save remote ( |
| — | Resource URL HTTPS công khai (OAuth) |
|
| Giới hạn ảnh remote (5 MB) |
| — | OIDC issuer |
| — | JWT |
|
| Scopes chấp nhận |
Development
uv sync
uv run pytest tests/ -vCI: .github/workflows/test.yml.
Script hỗ trợ:
Script | Mục đích |
| HTTP dev + Cloudflare Quick Tunnel demo (No Auth) |
| HTTP production OAuth (local |
| Login CF + named tunnel + DNS + |
| Wrapper Phase 4 OAuth (site-specific) |
| Wrapper named tunnel cho ChatGPT HTTPS |
AutoCAD LT AutoLISP Compatibility
AutoLISP có trên AutoCAD LT 2024+ (Windows).
Hỗ trợ | Không hỗ trợ |
| VLIDE, Express Tools đầy đủ, 3D nâng cao, AutoLISP trên Mac |
Một số đường dimension tối ưu dùng ActiveX khi có; xem lisp-code/auto_dimension_activex.lsp.
Documentation
Tài liệu | Nội dung |
Workflow part-aware dimension | |
Mã lỗi File IPC | |
Kiểm thử tay IPC | |
Remote allowlist / path guard | |
OAuth production + ChatGPT | |
Kế hoạch HTTP bridge tổng thể | |
Baseline phase 0 |
What's included (current)
8 tool MCP thống nhất, operation dispatch
Dual backend: File IPC + ezdxf
Dual transport: stdio + Streamable HTTP
Remote policy (dev No-Auth allowlist, production OAuth scopes)
ChatGPT path: OAuth MCP + Cloudflare named tunnel helpers (
start_cloudflare_tunnel.bat)Part-aware auto-dimension: detect → plan → commit / one-shot / audit-repair
File IPC reliability: session/request IDs, structured
error_code, per-document dispatcher probesystem.tool_manifest/runtime/healthdiagnosticsexecute_lispcho automation mở rộng (local only)Wheel packaging kèm
lisp-code(hatchlingforce-include)
License
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sontakmtp-cell/autocad-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server