Supported clients and IDEs

Cursor IDE

Use the endpoint from Autodesk Product Help MCP Server.

Open the command palette, then go to:

Cursor Settings: Tools & MCP

Click Add Custom MCP and paste the following JSON, then restart Cursor if the server does not appear:

{
  "mcpServers": {
    "autodesk-product-help": {
      "url": "https://developer.api.autodesk.com/knowledge/public/v1/mcp"
    }
  }
}

Claude Desktop

Claude Desktop connects to remote MCP servers via mcp-remote (run with npx). Add to your Claude Desktop config file, then restart Claude Desktop (quit completely and relaunch):

Use the endpoint from Autodesk Product Help MCP Server.

{
  "mcpServers": {
    "autodesk-product-help": {
      "command": "/path/to/npx",
      "args": ["mcp-remote", "https://developer.api.autodesk.com/knowledge/public/v1/mcp"],
      "env": {
        "PATH": "/path/to/npx/parent:/usr/local/bin:/usr/bin:/bin"
      }
    }
  }
}

Debugging (macOS)

tail -f ~/Library/Logs/Claude/mcp*.log

Claude Code

Claude Code connects to remote MCP servers over HTTP from the command line. Use the endpoint from Autodesk Product Help MCP Server.

Add the server with the claude mcp add command. Place all flags before the server name:

claude mcp add --transport http autodesk-product-help https://developer.api.autodesk.com/knowledge/public/v1/mcp

By default the server is added at local scope (available in the current project, private to you). To change where the configuration is stored, add a --scope flag before the name:

claude mcp add --transport http --scope user autodesk-product-help https://developer.api.autodesk.com/knowledge/public/v1/mcp

This is a public server that requires no sign-in, so no API key or headers are needed.

Verify

ChatGPT

Add Autodesk Product Help MCP Server from the ChatGPT app directory, then turn it on in any chat. No sign-in is required. Available on ChatGPT Plus, Pro, Business, Enterprise, and Education (web).

Add the app

  1. In ChatGPT, go to Settings > Connectors (or select + > More in the message box).
  2. Search for Autodesk Product Help MCP Server, then select Connect.

Use it in a chat

  1. Select + > More and choose Autodesk Product Help MCP Server.
  2. Ask a question, for example:
    • "List available products."
    • "Search help content for 'install' in Revit 2026."

If results come back, you're connected.

Note:

Autodesk Product Help MCP Server is public, unauthenticated, and read-only, so no Autodesk-side or Autodesk-org allowlisting is required — install it from the ChatGPT directory. In managed ChatGPT Business, Enterprise, or Education workspaces, access remains subject to your ChatGPT workspace's app/plugin policies. Developer mode is only relevant to custom or privately configured MCP apps, not this published integration.

For IT and workspace administrators, OpenAI documents how to manage apps at scale: Admin controls, security, and compliance for plugins and apps, Role-based access control (RBAC), and Plugins in ChatGPT and Codex.