get_safety_ratings

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

Get NHTSA 5-Star Safety Ratings (NCAP crash-test results) for a vehicle — overall, frontal, side, and rollover star ratings. Use for “crash test rating for a 2021 Honda Civic”, “how safe is X”. Pass make + model + model_year.

Parameters

NameTypeRequiredDescription
makestringyesVehicle make (e.g., “Honda”)
modelstringyesVehicle model (e.g., “Civic”)
model_yearnumberyesModel year (e.g., 2021)

Example call

Arguments

{
  "make": "Honda",
  "model": "Civic",
  "model_year": 2021
}

curl

curl -X POST https://gateway.pipeworx.io/nhtsa/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_safety_ratings","arguments":{"make":"Honda","model":"Civic","model_year":2021}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_safety_ratings', {
  "make": "Honda",
  "model": "Civic",
  "model_year": 2021
});

More examples

{
  "make": "Volvo",
  "model": "XC90",
  "model_year": 2023
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 2, 2026