ACC MCP Server
Provides tools to browse Autodesk Construction Cloud hubs, projects, folders, and files, and generate viewer links to open models in the Autodesk Viewer.
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., "@ACC MCP ServerList my ACC hubs"
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.
ACC MCP Server (for Claude web)
A remote Model Context Protocol server that lets Claude on claude.ai browse your Autodesk Construction Cloud (ACC) hubs/projects/files and hand you a link that opens the actual model in a hosted Autodesk Viewer page.
Why this shape: Claude web only connects to remote, publicly-reachable
MCP servers (Streamable HTTP). It cannot run a local stdio server on your
Mac, and it cannot render the real Autodesk Viewer (WebGL + Autodesk's own
JS/CSS) inline in the chat — so the get_viewer_link tool gives you a URL
that opens a small hosted viewer page in your browser instead.
1. Create an APS app (3-legged)
Go to https://aps.autodesk.com/myapps and create a new app.
Choose app type "Traditional Web App" (this is the 3-legged OAuth type — you need this, not "Server-to-Server", because the MCP server needs to act as you to see your ACC projects).
Set the Callback URL to:
https://YOUR-DOMAIN/aps/callback(use the same domain you'll deploy to in step 3 — you can update this later once you know it).Note the Client ID and Client Secret.
Related MCP server: Autodesk Build MCP Server
2. Provision the app in ACC
Your APS app needs to be added as a custom integration in your ACC account before it can see any projects:
In the ACC/BIM 360 admin panel, go to Account Admin > Custom Integrations and add your APS app (by Client ID).
Add it to the specific projects you want visible (or give it account-wide access, depending on your admin settings).
3. Deploy the server
This is a plain Node.js/Express app — deploy it anywhere that gives you a public HTTPS URL. Render.com's free tier is the easiest for testing:
cd acc-mcp-server
npm installRender.com (easiest):
Push this folder to a GitHub repo.
On Render: New > Web Service > connect the repo.
Build command:
npm install. Start command:npm start.Add environment variables (see
.env.example) in Render's dashboard.Once deployed, Render gives you a URL like
https://acc-mcp.onrender.com— set that asPUBLIC_BASE_URL, redeploy, and also update the APS app's callback URL (step 1.3) tohttps://acc-mcp.onrender.com/aps/callback.
Any other host (Fly.io, Railway, a VPS, AWS): same idea — just make sure
the process is reachable over HTTPS at the domain you put in
PUBLIC_BASE_URL.
Local test only (not reachable by Claude, but useful for sanity-checking):
npm start4. Add it as a custom connector in Claude
In claude.ai: Settings > Connectors (or the "+" button in a chat > "Connectors").
Click Add custom connector.
Paste your server's MCP URL:
https://YOUR-DOMAIN/mcpClick Add. Claude will discover the OAuth endpoints automatically (via
/.well-known/oauth-authorization-server) and walk you through logging into Autodesk — you'll see Autodesk's real login/consent screen.Enable the connector for your conversation (per-conversation toggle via the "+" button > Connectors).
5. Using it
Once connected, you can ask things like:
"List my ACC hubs"
"Show me the projects in [hub name]"
"List the files in the Project Files folder of [project name]"
"Give me a link to open [model name] in the viewer"
The last one returns a URL — open it in your browser to see the real Autodesk Viewer with your model loaded.
Notes on what's simplified here
Token storage is in-memory. Restarting the server logs everyone out and drops in-flight OAuth handshakes. For anything beyond testing, swap the
Map()s inserver.js(sessions,authCodes,mcpTokens) for a Postgres table — since you're already running Postgres locally, something like:create table mcp_sessions ( session_id uuid primary key, aps_access_token text, aps_refresh_token text, aps_expires_at timestamptz );is a drop-in replacement for the
sessionsMap.Single ACC integration only. This doesn't distinguish between multiple Autodesk accounts/users beyond one OAuth session per browser login — fine for personal use, would need per-user scoping for a team.
Tools are read/browse-only (
list_hubs,list_projects,list_top_folders,list_folder_contents,get_viewer_link). Adding ACC Issues, markups, or write actions means adding more tools that call the corresponding APS endpoints the same way — the pattern inserver.js(mcp.registerTool(...)) is copy-pasteable.Viewer page uses a 2-legged token (
viewables:readonly, via client credentials) scoped just to rendering geometry, not your personal 3-legged token — so the link is safe to open even though it's not tied to a login.
This server cannot be installed
Maintenance
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/Hovhanns97/mcp-server-adsk'
If you have feedback or need assistance with the MCP directory API, please join our Discord server