Autodesk MCP Platform
Allows to read and edit Autodesk Civil 3D drawings through tools for alignments, surfaces, corridors, pipe networks, quantity takeoff, cut/fill, and more.
Click on "Deploy 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., "@Autodesk MCP PlatformList all alignments and their lengths in the current drawing."
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.
Autodesk MCP Platform
Let any MCP-compatible AI assistant read and edit Autodesk Civil 3D drawings through tools - alignments, surfaces, corridors, pipe networks, quantity takeoff, cut/fill and more.
AI client (Claude Desktop, Cursor, VS Code, Cline, ...)
| Model Context Protocol (stdio)
v
Autodesk.MCP.Server (TypeScript / Node.js - product-agnostic MCP server)
| JSON-RPC 2.0 over a local Windows named pipe
v
Civil3D.Bridge (C# / .NET 8 plugin loaded inside Civil 3D)
| Autodesk .NET API (in-process)
v
Autodesk Civil 3D 2025 / 2026No network: everything runs on local named pipes, ACL'd to the current user.
Dynamic discovery: the server learns the entire tool catalog from the bridge at handshake time - no tool is hardcoded, and future products plug in with zero server changes.
Safe editing: editing tools run in transactions and require confirmation.
Quick start
Install the bridge: copy the
Civil3D.Bridge.Bundle-<version>.bundlefolder from a release into%APPDATA%\Autodesk\ApplicationPlugins\and restart Civil 3D. It loads automatically —NETLOADis not part of normal use.Install the server:
npm install -g autodesk-mcp-server(ornpx -y autodesk-mcp-server@latest).Point your AI client at the server (ready-made configs in
examples/clients/).
Civil 3D and your AI client can be started in any order, and either can be restarted without touching the other: the server watches the endpoint registry continuously and pushes tool-list updates as bridges come and go. See docs/Installation.md for the full connection walkthrough, including how to diagnose "Discovered 0 tools".
See docs/QuickStart.md and docs/Installation.md for the full walkthrough.
Related MCP server: RevitMCPBridge2026
Documentation
Guide | Contents |
| 5-minute setup + first prompts |
| bridge bundle + npm install, upgrade, uninstall |
| server/bridge options, env vars, logging, multi-bridge |
| diagnosis by symptom |
| build, test, benchmark, release from source |
| versioning, tags, release pipeline |
| supported products/clients/protocol guarantees |
| acceptance checklist before announcing |
| measured metrics + how to run them |
| full design, ADRs, sequence diagrams |
| frequently asked questions |
| editing commands: rename, create/update/delete pipe, pipe networks |
| write-transaction pipeline, validation, confirmation, events |
| the standard for building/registering/testing a tool |
| domain projects, services, repositories, DTO conventions |
| filtering/sorting/pagination for list/search tools |
| multi-step engineering workflow framework |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| reachability spike: attach a PDF underlay, plot to PDF (no shipped tool yet) |
| working on this repo with an AI assistant: workflow, rules, patterns, checklists |
Examples
examples/clients/- Claude Desktop, VS Code, Cursor, Cline configurationsexamples/config/- server/bridge configs, env vars, logging, multi-bridgeexamples/prompts/- typical prompts by workflowexamples/workflows/- end-to-end session transcriptsexamples/json-rpc/- real wire messages (NDJSON over the pipe)
Development
npm run quality # full local quality gate (mirrors CI)See docs/DeveloperGuide.md and docs/Contributing.md.
Releases
Version 1.0.0 (GA) with the Phase 9 production-hardening work complete
(see docs/PRODUCTION-HARDENING.md and docs/RELEASE-1.0.0-FINAL.md). Tags follow
v<semver>; see docs/ReleaseProcess.md.
License
MIT - see LICENSE.
This server cannot be deployed
Maintenance
Related MCP Connectors
Human-input bridge for AI agents with voice-first answer links, MCP tools, and HTTP APIs.
- QuallaaOAuthcom.quallaa
Talk to your public-facing AI from any MCP client — Claude, ChatGPT, Cursor, Cline, Windsurf.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI assistants to interact with Autodesk Civil 3D, allowing them to retrieve project data, create/modify/delete drawing elements, and execute code to automate Civil 3D operations.332MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for Autodesk Revit (BIM) with 705+ API endpoints. Enables AI agents to create walls, place doors/windows, generate sheets, manage views, and produce construction documents via the Model Context Protocol. Uses named pipes for zero-crash Revit integration.22MIT
- AlicenseAqualityCmaintenanceEnables AI assistants to interact with Autodesk Civil 3D through natural language, supporting tools for surfaces, alignments, profiles, corridors, pipe networks, COGO points, and AutoCAD geometry.93MIT
- FlicenseNot gradedqualityCmaintenanceMCP server that connects an LLM assistant to Autodesk Civil 3D via COM, enabling direct manipulation of surfaces, alignments, COGO points, layers, profiles, and more through natural language.-