Install
$ agentstack add mcp-guidogl-autodesk-mcp ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Autodesk Platform Services MCP Server
This project implements a Model Context Protocol (MCP) server that interacts with Autodesk Platform Services (APS) documentation. This protocol supports various tools to interact with different Autodesk APIs, with a focus on the Model Derivative API.
Setup
To run the Autodesk MCP server using npx, use the following command:
npx -y @autodesk/dev-mcp@latest
Usage with Cursor or Claude Desktop
Add the following configuration. For more information, read the Cursor MCP documentation or the Claude Desktop MCP guide.
{
"mcpServers": {
"autodesk-dev-mcp": {
"command": "npx",
"args": ["-y", "@autodesk/dev-mcp@latest"]
}
}
}
On Windows, you might need to use this alternative configuration:
{
"mcpServers": {
"autodesk-dev-mcp": {
"command": "cmd",
"args": ["/k", "npx", "-y", "@autodesk/dev-mcp@latest"]
}
}
}
Available tools
This MCP server provides the following tools:
| Tool Name | Description | | ------------------------ | ------------------------------------------------------- | | searchapsdocs | Search Autodesk Platform Services documentation | | introspectmodelderivative | Access and search Model Derivative API information |
Available prompts
This MCP server provides the following prompts:
| Prompt Name | Description | | ------------------------- | -------------------------------------------------------- | | autodeskmodelderivative | Help with Autodesk Model Derivative API tasks | | autodeskapiworkflow | Guide for implementing Autodesk Platform Services workflows |
Development
The server is built using the MCP SDK and communicates with Autodesk Platform Services information.
npm install- Modify source files
- Run
npm run buildto compile - Run
npm run testto run tests - Add an MCP server that runs this command:
node /dist/index.js
License
ISC
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Guidogl
- Source: Guidogl/autodesk-mcp
- License: ISC
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.