aphis_inspection_filter_options

Pack: aphis-animal-care · Endpoint: https://gateway.pipeworx.io/aphis-animal-care/mcp

List the filter vocabularies aphis_inspection_reports accepts: the 34 animal categories (DOGS, CATS, NONHUMAN PRIMATES, MARINE MAMMALS, …) and the 2,165 Animal Welfare Act citation section codes (e.g. “3.1(a) - Housing facilities, general”). Use this to find the exact citation string before filtering an inspection search. Sourced from the USDA APHIS eFile Public Search Tool.

Parameters

NameTypeRequiredDescription
querystringnoFilter both lists to entries containing this text, e.g. “3.1”, “housing”, “primate”, “veterinary care”.
kindstringno”all” (default), “animals” for animal categories only, or “citations” for AWA section codes only.
limitnumbernoMax entries per list (1-500, default 50).

Example call

Arguments

{
  "query": "veterinary care",
  "limit": 5
}

curl

curl -X POST https://gateway.pipeworx.io/aphis-animal-care/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"aphis_inspection_filter_options","arguments":{"query":"veterinary care","limit":5}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('aphis_inspection_filter_options', {
  "query": "veterinary care",
  "limit": 5
});

More examples

{
  "kind": "animals"
}

Connect

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

{
  "mcpServers": {
    "aphis-animal-care": {
      "url": "https://gateway.pipeworx.io/aphis-animal-care/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 5, 2026