Autodesk Product Help
The Autodesk Product Help MCP Server connects AI agents directly to Autodesk's official product documentation, enabling accurate, real-time answers across 110+ products. As a secure, read-only interface, it allows AI tools to search, navigate, and retrieve trusted Autodesk help content. This enables support for natural language queries, accelerates onboarding, and provides a reliable foundation for intelligent agents built on authoritative Autodesk product documentation.
- Homepage
- https://help.autodesk.com/view/ADSKMCP/ENU/?guid=ADSKMCP_KnowledgeMcp_autodesk_product_help_mcp_server_html
- Remote URL
https://developer.api.autodesk.com/knowledge/public/v1/mcp- Transport
- streamable-http
Tools (2)
Extracted live via the executor SDK.
-
get_available_productsReturns the canonical Autodesk product catalog (closed set). Each item has: product_name, product_code, and release_codes. Use this to discover or validate product values for other product-scoped tools. Not required if valid product context is already available. Terminology: release_codes = the code only (e.g. 2025), not the human-readable release name (release_name, e.g. 'AutoCAD 2025').
-
search_help_contentSearch Autodesk Help/Support documentation and return the most relevant documents for a user question.
Use when:
- The user asks how to do something in an Autodesk product.
- The user reports an error (include the exact error text/code in the query).
- The user needs official troubleshooting steps or reference documentation.
Call shape (recommended):
- Always pass:
query,locale. - If your agent has a default product context, pass it directly via
product_code(preferred) orproduct_name. - Pass
release_codeonly when you can validate it for that product.
Behavior:
-
Locale:
- Read
localefrom your current context. Do not guess locale. - Pass that locale as the
localeparameter.
- Read
-
Product and release filters (best-effort):
- If your agent already has a default
product_codeorproduct_name, pass it directly. - Only call
get_available_productsto validate/normalize when: a) product is missing/unknown in context, OR b) the user explicitly specifies a product that may differ from your default, OR c) you have arelease_codethat may not be valid for the product, OR d) the product/release value appears malformed or not an allowed enum/value. - If you cannot confidently map to an exact allowed value from
get_available_products, omit that field rather than guessing. - If both
product_nameandproduct_codeare present, they must refer to the same product;product_codetakes precedence.
- If your agent already has a default
-
Query construction:
- Make the query keyword-rich: include product + feature/task nouns.
- Include exact error text/codes when relevant.
- Use the user's wording where possible.
- Do not include secrets, credentials, or personal data.
Returns:
- Up to
max_resultsdocuments sorted by relevance. Each item includes title, url, locale, body, media_type, source (and may include internal IDs for debugging/deduplication).