nyc_search_animal

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

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.

Parameters

NameTypeRequiredDescription
namestringyesDog name (partial match, case-insensitive), e.g. “Paige”.
zipcodestringnoOptional ZIP code filter.
limitnumbernoMax rows (1-200, default 20).

Example call

Arguments

{
  "name": "Paige"
}

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_search_animal","arguments":{"name":"Paige"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('nyc_search_animal', {
  "name": "Paige"
});

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