nj_mvc_inspection_facilities

Pack: nj-mvc · Endpoint: https://gateway.pipeworx.io/nj-mvc/mcp

Find a licensed New Jersey vehicle inspection or emission-repair facility — the private inspection stations, state inspection stations and registered emission repair shops overseen by the New Jersey Motor Vehicle Commission (MVC), the agency other states call the DMV. Returns the business name, street address, town, phone, licence id and whether it inspects cars, diesel or both. Answers “where can I get my car inspected in Edison NJ”, “NJ diesel inspection station near ZIP 07740”, “emission repair facility in Monmouth County”, and “how many private inspection facilities does New Jersey license”. Covers all 1,167 licensed facilities. For a driver license, ID card or registration renewal, the MVC runs separate licensing agencies that this file leaves out.

Parameters

NameTypeRequiredDescription
citystringnoTown name, matched as a substring, e.g. “Edison”, “Long Branch”. More reliable than county.
countystringnoCounty name, e.g. “Morris”, “Monmouth”. Upstream mislabels some rows — prefer city.
zipstringnoFive-digit New Jersey ZIP code, or a prefix, e.g. “07740” or “077”.
namestringnoBusiness-name substring, e.g. “MIDAS”, “AUTO”.
facility_typestringnoFacility category: ${FACILITY_TYPES.map((t) =>
inspection_typestringnoWhat the shop inspects: ${INSPECTION_TYPES.map((t) =>
limitnumber,stringnoMax facilities to return (default 50, max 200).

Example call

Arguments

{
  "county": "Morris"
}

curl

curl -X POST https://gateway.pipeworx.io/nj-mvc/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nj_mvc_inspection_facilities","arguments":{"county":"Morris"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('nj_mvc_inspection_facilities', {
  "county": "Morris"
});

More examples

{
  "city": "Edison",
  "inspection_type": "diesel"
}

Connect

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

{
  "mcpServers": {
    "nj-mvc": {
      "url": "https://gateway.pipeworx.io/nj-mvc/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 31, 2026