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
| Name | Type | Required | Description |
|---|---|---|---|
city | string | no | Town name, matched as a substring, e.g. “Edison”, “Long Branch”. More reliable than county. |
county | string | no | County name, e.g. “Morris”, “Monmouth”. Upstream mislabels some rows — prefer city. |
zip | string | no | Five-digit New Jersey ZIP code, or a prefix, e.g. “07740” or “077”. |
name | string | no | Business-name substring, e.g. “MIDAS”, “AUTO”. |
facility_type | string | no | Facility category: ${FACILITY_TYPES.map((t) => |
inspection_type | string | no | What the shop inspects: ${INSPECTION_TYPES.map((t) => |
limit | number,string | no | Max 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.