Nyc Animals

live Geography

NYC Animals MCP — dog licensing and dog-bite records for New York City

3 tools
0ms auth
free tier 50 calls/day

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/nyc-animals/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("nyc_dog_bites", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("nyc animals mcp — dog licensing and dog-bite records for new york city");