nyc_dog_licences_by_breed

Pack: nyc-animals · Endpoint: https://gateway.pipeworx.io/nyc-animals/mcp

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]”.

Parameters

NameTypeRequiredDescription
breedstringnoOptional breed filter (partial match, case-insensitive), e.g. “Labrador”, “Pit Bull”.
zipcodestringnoOptional ZIP code filter, e.g. “10035”.
topnumbernoNumber of top breeds to return when no breed filter is given (1-100, default 20).

Example call

Arguments

{
  "top": 5
}

curl

curl -X POST https://gateway.pipeworx.io/nyc-animals/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nyc_dog_licences_by_breed","arguments":{"top":5}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('nyc_dog_licences_by_breed', {
  "top": 5
});

Connect

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

{
  "mcpServers": {
    "nyc-animals": {
      "url": "https://gateway.pipeworx.io/nyc-animals/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 4, 2026