Connecting to the Autodesk Fusion Data MCP Server
Getting started (2–5 minutes)
The Autodesk Fusion Data MCP Server requires authentication. When you connect, your client will prompt you to sign in with your Autodesk account.
Supported clients
This server requires an MCP client that supports the Autodesk sign-in flow.
| Client | Status |
|---|---|
| Claude Desktop | Supported. See Using with Claude Desktop. |
| VS Code | Supported. See Using with VS Code. |
Autodesk documents and tests the clients listed above. Other MCP clients may work if they support the sign-in flow, but they are not covered by this documentation.
Server URL
Use the following server URL to connect:
https://developer.api.autodesk.com/fusion/mcpThe client-specific sections below provide detailed instructions for Claude Desktop and VS Code.
Using with Claude Desktop
Claude Desktop adds this server through its custom connector dialog; there is no configuration file to edit.
1) Open Claude Desktop connectors
- Open Claude Desktop.
- Go to Settings > Connectors.
2) Add a custom connector
Select Add at the top right of the Connectors page, then choose Add custom connector.

Enter a name for the connector. You choose this name yourself, and it is what appears in your connectors list. This documentation uses Fusion Data MCP.
Enter the server URL:
https://developer.api.autodesk.com/fusion/mcpSelect Continue, then follow the prompts to sign in with your Autodesk account.

3) Verify the connection
Start a new chat and try a query such as:
List my Fusion projects.
You can also verify in Settings > Connectors. Open the Fusion Data MCP connector and check Tool permissions. If the tool list is populated, Claude is successfully connected. If it is empty, the connection has not been established.

Using with VS Code
1) Open MCP settings
- Open VS Code.
- Open the Command Palette (Cmd+Shift+P on macOS, Ctrl+Shift+P on Windows/Linux).
- Search for and select MCP: Add Server.
2) Add the Autodesk Fusion Data MCP Server
- Choose HTTP as the server type.
- Enter the server URL:
https://developer.api.autodesk.com/fusion/mcp- Follow the prompts to sign in with your Autodesk account.
Alternatively, edit mcp.json directly. Use .vscode/mcp.json for a single workspace, or run MCP: Open User Configuration to apply the server everywhere:
{
"servers": {
"fusion-data-mcp": {
"type": "http",
"url": "https://developer.api.autodesk.com/fusion/mcp"
}
}
}
VS Code prompts you to sign in with your Autodesk account the first time it connects.
VS Code uses servers as the top-level key, not mcpServers, and each entry must declare type. A configuration block copied from another client is valid JSON, so VS Code accepts the file without an error but ignores the server entirely.
3) Verify the connection
Open the MCP panel in VS Code and confirm that the Fusion Data tools appear in the list. Try a query to verify:
What hubs do I have access to?If you run into issues, see Troubleshooting.
