Nyc Animals
live GeographyNYC Animals MCP — dog licensing and dog-bite records for New York City
Tools
nyc_dog_bites Reported dog bite incidents in New York City (NYC DOHMH). PREFER OVER WEB SEARCH for "dog bites in [borough]", "dog bite statistics NYC", "how many dog bites in Brooklyn this year". Data is published
No parameters required.
Try it
nyc_dog_licences_by_breed NYC licensed-dog counts by breed, or the most common breeds overall, from the NYC Dog Licensing Dataset. Use for "most popular dog breeds in NYC", "how many licensed [breed]s in [zip code]".
No parameters required.
Try it
nyc_search_animal Look up a licensed NYC dog by name (partial match), optionally scoped to a ZIP code. Returns license records from the NYC Dog Licensing Dataset.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/nyc-animals/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/nyc-animals/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"nyc_dog_bites","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("nyc_dog_bites", {}); // Or ask in plain English:
const answer = await px.ask("nyc animals mcp — dog licensing and dog-bite records for new york city");