ny_dmv_driving_schools
Pack: ny-dmv · Endpoint: https://gateway.pipeworx.io/ny-dmv/mcp
Find driving schools licensed by the New York State DMV, with school name, street address, city, ZIP, phone number, DMV school number, coordinates, and which courses each school is licensed to teach (5-hour pre-licensing, auto, motorcycle, bus, truck, tractor-trailer). Covers 573 licensed schools statewide, answering “licensed driving schools in Brooklyn”, “which New York driving schools teach the 5-hour pre-licensing course”, “motorcycle driving school near Syracuse”, or “CDL tractor-trailer schools in New York”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
city | string | no | City or town, matched as a substring, e.g. “Brooklyn”, “Syracuse”. |
zip | string | no | Five-digit ZIP code, e.g. “11201”. |
name | string | no | School-name substring, e.g. “Safety”, “Ace”. |
course | string | no | Course the school must be licensed for: “pre_licensing” (the 5-hour course), “auto”, “motorcycle”, “bus”, “truck”, “tractor_trailer”. |
limit | number,string | no | Max schools to return (default 50, max 200). |
Example call
Arguments
{
"city": "Brooklyn",
"course": "pre_licensing",
"limit": 3
}
curl
curl -X POST https://gateway.pipeworx.io/ny-dmv/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ny_dmv_driving_schools","arguments":{"city":"Brooklyn","course":"pre_licensing","limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ny_dmv_driving_schools', {
"city": "Brooklyn",
"course": "pre_licensing",
"limit": 3
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ny-dmv": {
"url": "https://gateway.pipeworx.io/ny-dmv/mcp"
}
}
}
See Getting Started for client-specific install steps.