The question everyone arrives with
Autodesk has AI in AutoCAD now. So it writes your LISP, right? Or it is about to, and there is no point learning any of this?
It is a fair assumption and it is worth answering properly, because the answer is unusually clear-cut. We went through Autodesk’s own AutoCAD 2027 launch material and checked what the Autodesk Assistant is documented to do. The short version: it advises. It does not write your automation, and Autodesk does not claim it does.
What actually shipped
AutoCAD 2027 was announced by The AutoCAD Team on 25 March 2026. The relevant section of the launch post is headed — and the capitalisation is Autodesk’s own, not ours — “New Autodesk Assistant (tech preview)”.
Autodesk’s description:
Autodesk Assistant delivers intelligent, in-context guidance powered by Autodesk AI without disrupting your design flow, helping you and your team maintain consistency and quality with less manual effort. In AutoCAD 2027, you can use conversational prompts to validate drawings against your organization’s own CAD standards, by uploading a reference file and checking designs against it, helping to surface CAD standards issues earlier and making it easier to catch problems during the design process.
Read that for what it is rather than what a press release usually is, because it is genuinely useful. Upload your office standards, then ask in plain English whether a drawing complies. Anyone who has spent an afternoon checking layer names against a standards document by eye will see the value immediately. It is a real feature solving a real, tedious problem.
It is also, precisely, a checking feature. Not an authoring one.
The words that do not appear
Here is the finding that settles the question. We searched the full text of Autodesk’s launch post for the vocabulary of AutoCAD customisation:
| Term | Occurrences in Autodesk’s AutoCAD 2027 launch post |
|---|---|
| AutoLISP | 0 |
| LISP | 0 |
| script | 0 |
| macro | 0 |
| VBA | 0 |
| .NET | 0 |
| ObjectARX | 0 |
| code | 0 |
Not once, in any of them. On the launch post for a release whose headline feature is an AI assistant.
Autodesk also bounds the scope itself, in a single sentence that is doing a lot of work:
In this release, that capability is focused on alignment with CAD standards.
“In this release” is the language of a company that intends to expand something, and we are not going to pretend otherwise. But a tech preview scoped to standards checking is what exists today, and “focused on alignment with CAD standards” is Autodesk’s own boundary, not our inference.
The MCP part, and who to credit for it
The Assistant is built on a piece of plumbing worth knowing about. Autodesk:
This experience is enabled by Autodesk Assistant beginning to leverage Model Context Protocol (MCP), which helps it better understand what you’re working on and what you’re trying to accomplish. This enables more situational, relevant responses directly inside AutoCAD.
MCP is a standard way for an AI to be handed tools and context by an application, rather than each integration being a bespoke one-off. Think of it as the DXF moment for AI integrations — once everyone speaks it, anything can talk to anything.
Worth being careful about attribution here, because it is widely muddled. Autodesk’s own launch post says “Model Context Protocol (MCP)” and stops there — the word Anthropic does not appear on it. The attribution comes from independent coverage: Architosh, reviewing the release on 2 April 2026, writes that “AutoCAD 2027 now leverages Anthropic’s Model Context Protocol (MCP) AI standard” and notes plainly that “The technology was established by Anthropic”.
Both statements are true. They just come from different places, and it is worth citing each to the right source.
Note also Autodesk’s hedge: “beginning to leverage”. Not “built on”. Not “powered by”. Beginning to.
What else is in the release, briefly
Since the assistant is the part that gets the headlines, it is worth noting that the most immediately useful AI-adjacent feature in AutoCAD 2027 is not the chatbot at all. Geometry Cleanup, in Autodesk’s words, “automatically identifies common geometry issues such as gaps, overshoots, undershoots, and misaligned angles, then suggests targeted fixes”.
Anyone who has inherited a consultant’s DWG knows exactly what that is worth. The rest of the release runs to Checkout for parallel editing of one DWG, Connected References and Connected Support Files, Forma Data Management Essentials now included with a standalone subscription, and Forma Board integration.
None of it writes AutoLISP.
So what is writing the AutoLISP?
A general-purpose chatbot, in another window, that has never seen your drawing.
That is the honest state of things in 2026, and it is worth stating plainly because it reframes the whole question. The thing generating AutoLISP for working drafters right now knows nothing about your office standards, has no access to your layer conventions, cannot see the drawing it is writing code for, and — as the public record on the Autodesk and CADTutor forums documents at length — has a well-attested habit of inventing function names that do not exist.
Meanwhile the tool that does have context, and can see your standards, is scoped to telling you when a drawing breaks them.
There is a certain symmetry to that which is easy to miss. Autodesk built the checker. The authoring is being done by something with no context at all. The two halves of a sensible workflow exist — they are just in different applications, made by different companies, and nothing joins them up for you.
Does AutoLISP have a future at Autodesk?
The honest answer is that the documents do not say, and we are not going to guess on your behalf. What they do show is a language still being actively extended rather than quietly retired:
- AutoCAD 2012 added
command-s, plus*push-error-using-command*,*push-error-using-stack*and*pop-error-mode*— three functions that exist specifically to make error handlers work properly. - AutoCAD 2023: “AutoLISP is now available on AutoCAD web for AutoCAD subscribers only.”
- AutoCAD LT 2024 gained AutoLISP and DCL, ending three decades of LT being the version you could not customise.
A language being ported to the web client and pushed down into the budget seat is not a language on the way out. Beyond that, the documentation is silent, and so are we.
What this means for you on Monday
Nobody is coming to check your routines. The vendor’s AI checks drawings against standards; the chatbot writing your code cannot see either. The review pass is still yours.
The good news is that it is a short pass. The failures in generated AutoLISP cluster in a specific and readable place — error handlers, undo groups, system variable restores, local declarations — and none of them require running anything to spot.
We have written that out three ways: the failure list, a line-by-line review of a generated routine with a twelve-point checklist, and a paste-in function allowlist for the one failure mode reading cannot catch reliably. If you are on LT, what runs and what does not is its own question. And for the setup that actually lets a model drive AutoCAD rather than paste into it, see Claude + AutoCAD via MCP.
References
- AutoCAD 2027: Redefining How You Create, Collaborate, and Deliver — The AutoCAD Team, Autodesk, 25 March 2026. Autodesk Assistant (tech preview), the CAD standards scope, the MCP statement, Geometry Cleanup and the rest of the feature list.
- Autodesk 2027 Adds Strong New Features — Anthony Frausto-Robledo, Architosh, 2 April 2026. Independent review; attributes Model Context Protocol to Anthropic.
- Model Context Protocol — official specification and documentation.
- What’s New or Changed with AutoLISP — Autodesk, AutoCAD LT 2024 AutoLISP Developer’s Guide. Release history for
command-sand the error-handling functions; AutoLISP on AutoCAD web; LT gaining AutoLISP and DCL. - command-s (AutoLISP) — Autodesk AutoLISP Reference, AutoCAD 2024.
- Claude + AutoCAD via MCP: AI Drafting on AutoLISP (2026 Guide) — blog.draftsperson.net.
- AutoLISP for AutoCAD: Tutorials and 139 Free Routines — blog.draftsperson.net.