get_makes

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

Get all vehicle brands for a model year. Returns make names and IDs. E.g., year ‘2023’.

Example call

Arguments

{}

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_makes","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_makes', {});

Response shape

Always returns: count, makes

FieldTypeDescription
countnumberTotal count of vehicle makes
makesarrayList of vehicle makes
Full JSON Schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Total count of vehicle makes"
    },
    "makes": {
      "type": "array",
      "description": "List of vehicle makes",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": [
              "number",
              "null"
            ],
            "description": "Make ID"
          },
          "name": {
            "type": [
              "string",
              "null"
            ],
            "description": "Make name"
          }
        },
        "required": [
          "id",
          "name"
        ]
      }
    }
  },
  "required": [
    "count",
    "makes"
  ]
}

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 May 9, 2026