Pipeyard

Autodesk Build MCP Connector

Autodesk Build
constructionStatus: Active4.8 ratingSecurity score: 9/10Context size: Medium

Connect AI agents to Autodesk Build for construction document management, issues tracking, and project collaboration.

Auth notes

Use Autodesk Platform Services (APS) OAuth 2.0. Register app at aps.autodesk.com. Requires 3-legged OAuth for user data access. Store refresh tokens securely.

Rate limits

200 requests per minute. APS enforces rate limits per app not per user. Implement exponential backoff on 429 errors.

Edge cases

API docs sometimes lag behind actual endpoints. Test all endpoints in sandbox before production. File upload endpoints have 200MB limit. Some fields return null instead of empty array.

Sandbox testing

Run test calls against Autodesk Build from Pipeyard. Try prompts below to see a simulated response; real MCP integration is coming in a future release.

Have a connector you'd like us to prioritize or a specific test flow you care about? Use the Requests page to submit new ideas.

Quick Start — curl example

curl
curl -X POST "https://developer.api.autodesk.com/authentication/v2/token" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "client_id={client_id}&client_secret={client_secret}&grant_type=client_credentials&scope=data:read"

Credential Setup Guide

  1. 11. Go to aps.autodesk.com and sign in or create a free account
  2. 22. Navigate to Applications and click "Create Application"
  3. 33. Select "Traditional Web App" as application type
  4. 44. Copy your Client ID and Client Secret from the app settings
  5. 55. Set your Callback URL to your app redirect URI
  6. 66. Under API Access select Data Management and Construction APIs
  7. 77. Get your access token using the curl command on the left
  8. 88. Find your Hub ID by calling GET https://developer.api.autodesk.com/project/v1/hubs

Example API Response

Sample data
curl
{
  "data": [
    {
      "type": "projects",
      "id": "b.project-uuid-here",
      "attributes": {
        "name": "Downtown Office Complex",
        "scopes": [
          "b360project"
        ],
        "status": "active",
        "startDate": "2025-02-01",
        "endDate": "2026-08-31",
        "projectType": "Commercial",
        "currency": "USD",
        "jobNumber": "2025-DTC-001"
      }
    }
  ]
}
Autodesk Build MCP Connector — MCP Connector | Pipeyard