fmcsa_safety_snapshot

Pack: fmcsa · Endpoint: https://gateway.pipeworx.io/fmcsa/mcp

Get the FMCSA safety profile for a US motor carrier by USDOT number: safety rating (Satisfactory/Conditional/Unsatisfactory) with rating and review dates, USDOT operating status, driver/vehicle/hazmat inspection counts and out-of-service (OOS) rates vs national averages, and 24-month crash counts (fatal/injury/tow). Keyless via the FMCSA SAFER Company Snapshot. Pass an FMCSA QCMobile webKey via _apiKey to also get SMS BASIC categories (Unsafe Driving, HOS, Vehicle Maintenance, …) with violation counts and percentiles.

Parameters

NameTypeRequiredDescription
dot_numbernumber,stringyesThe carrier USDOT number, e.g. “76830”.

Example call

Arguments

{
  "dot_number": "54283"
}

curl

curl -X POST https://gateway.pipeworx.io/fmcsa/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fmcsa_safety_snapshot","arguments":{"dot_number":"54283"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('fmcsa_safety_snapshot', {
  "dot_number": "54283"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "fmcsa": {
      "url": "https://gateway.pipeworx.io/fmcsa/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 28, 2026