Skip to main content
ClaudeWave
pipeworx-io avatar
pipeworx-io

mcp-aphis-animal-care

View on GitHub

APHIS Animal Care MCP — USDA Animal Welfare Act licensees, registrants and

MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/15/2026
Install in Claude Code / Claude Desktop
Method: NPX · @pipeworx/mcp-aphis-animal-care
Claude Code CLI
claude mcp add mcp-aphis-animal-care -- npx -y @pipeworx/mcp-aphis-animal-care
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-aphis-animal-care": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-aphis-animal-care"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# @pipeworx/aphis-animal-care

USDA Animal Welfare Act licensees and registrants — commercial dog breeders,
dealers, exhibitors, carriers and research facilities — together with the APHIS
Animal Care inspection reports written about them, their critical/direct
violation counts and links to the official signed report PDFs.

Part of [Pipeworx](https://pipeworx.io) — an MCP gateway connecting AI agents to 1573+ live data sources.

## Tools

- `aphis_licensee_search(state?, license_type?, name?, city?, zip?, certificate_number?, customer_number?, kind?, status?, limit?, page?)` —
  who holds an AWA licence or registration. Answers "USDA licensed dog breeders
  in Missouri", "look up certificate 43-A-6814", "is this kennel USDA
  licensed". Returns name, certificate number, licence class, certificate
  status (Active / Cancelled / Revoked), facility city/county/ZIP.
- `aphis_inspection_reports(state?, license_type?, name?, city?, zip?, certificate_number?, customer_number?, animal_category?, citation?, teachable_moments_only?, limit?, page?)` —
  Animal Care inspection reports with inspection date, licensee, location,
  counts of critical / direct / non-critical violations and teachable moments,
  and `report_pdf_url` (the official signed report).
- `aphis_inspection_filter_options(query?, kind?, limit?)` — the 34 animal
  categories and 2,165 AWA citation section codes the inspection filters
  accept.

## Auth

Keyless. No account, no cookies, no session token.

## Data sources

- <https://efile.aphis.usda.gov/PublicSearchTool/s/sfsites/aura> — the Aura
  endpoint behind the USDA APHIS eFile Public Search Tool. Actions used:
  `apex://EFL_PSTController/ACTION$doCustomerQuery` (licensees/registrants),
  `…$doIRSearch_UI` (inspection reports), `…$getSearchSetup` (state and
  licence-type vocabularies), `…$getIRSearchFilters` (animal categories,
  citation section codes).

### Things the next person would otherwise rediscover the hard way

There is no documented REST API for this data and no key. The Public Search
Tool is a Salesforce Lightning community; its search runs over the Aura
endpoint. The Apex class and methods were captured by driving one real search
in a headless Chrome under CDP and reading the request off the wire — blind
guessing at Apex class names does not work, because a wrong class and a wrong
method return the byte-identical `No apex action available for X.y`.

- **"Guest user access is not allowed" is not a policy block.** A malformed or
  missing `aura.context` returns that message with descriptor
  `aura:invalidSession`, which reads as a hard refusal of anonymous callers.
  It is not — the endpoint serves guests. Measured 2026-09-05, `aura.context`
  needs nothing beyond `{"mode":"PROD","app":"siteforce:communityApp"}`.
- **`fwuid` does not matter.** A bogus fwuid, and an omitted one, both return
  `SUCCESS`. This pack therefore does not scrape a framework version off the
  page and cannot break when Salesforce rolls it.
- **`index` is a page number, not a row offset**, and the upstream caps the
  underlying SOQL offset at 2,000 rows: `page * page_size <= 2000`. Past that
  it throws `Maximum SOQL offset allowed for apiName EFLLicense__c is 2000`.
  `totalCount` is still the true unpaged count (4,986 Class A breeder licences
  in Missouri alone), so narrow rather than page.
- **`irFilterCriteria` keys are SINGULAR.** `animalCategory` and `sectionCode`
  each take one Salesforce id. The plural `animalCategories: [id]` is silently
  ignored and returns the *unfiltered* count with a 200 — a silent wrong
  answer, not an error.
- **No date filter exists** on the inspection search. `inspectionDateFrom`,
  `fromDate` and `startDate` are all ignored. Filter caller-side on
  `inspection_date`.
- **A licence record is not a business.** One person appears once per
  certificate, and most rows in any state are Cancelled historical licences.
  `status: "active"` is the argument that matters for "who is licensed today".
- `sObjectType` selects the register: `EFLLicense__c` (Class A/B/C licensees)
  vs `EFLRegistration__c` (registrants — research facilities, carriers,
  intermediate handlers).

## Quick Start

Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):

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

### What this endpoint actually serves

`tools/list` at `https://gateway.pipeworx.io/aphis-animal-care/mcp` returns the tools in the table
above **plus the shared Pipeworx meta-tools** — `ask_pipeworx`,
`discover_tools`, `search_within`, `remember`/`recall` and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's `initialize` response states its exact scope, and
is the authoritative answer for a given day.

This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
`ask_pipeworx`, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.

Or connect to the full Pipeworx gateway to get every pack's tools listed
directly, instead of just this one's:

```json
{
  "mcpServers": {
    "pipeworx": {
      "url": "https://gateway.pipeworx.io/mcp"
    }
  }
}
```

Both URLs reach the same gateway and the same 1573+ data sources. The
only difference is which pack's tools are listed **directly**; `ask_pipeworx`
reaches all of them from either one.

## Standalone (no gateway account)

This package also runs as a local stdio MCP server — no Pipeworx account, no
gateway round-trip:

```json
{
  "mcpServers": {
    "aphis-animal-care": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-aphis-animal-care"]
    }
  }
}
```

Or run it directly to confirm it starts:

```bash
npx -y @pipeworx/mcp-aphis-animal-care
```

It speaks MCP over stdin/stdout and answers `initialize`/`tools/list`/`tools/call`
for **only** this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.

## Using with ask_pipeworx

Instead of calling tools directly, you can ask questions in plain English —
this works on the pack endpoint above as well as on the full gateway:

```
ask_pipeworx({ question: "your question about Aphis Animal Care data" })
```

The gateway picks the right tool and fills the arguments automatically.

## More

- [Docs and guides](https://pipeworx.io/docs)
- [pipeworx.io](https://pipeworx.io)

## License

MIT
aphis-animal-caremcpmcp-servermodel-context-protocolpipeworx

What people ask about mcp-aphis-animal-care

What is pipeworx-io/mcp-aphis-animal-care?

+

pipeworx-io/mcp-aphis-animal-care is mcp servers for the Claude AI ecosystem. APHIS Animal Care MCP — USDA Animal Welfare Act licensees, registrants and It has 0 GitHub stars and its last recorded update is dated 2026-09-14.

How do I install mcp-aphis-animal-care?

+

You can install mcp-aphis-animal-care by cloning the repository (https://github.com/pipeworx-io/mcp-aphis-animal-care) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is pipeworx-io/mcp-aphis-animal-care safe to use?

+

Our security agent has analyzed pipeworx-io/mcp-aphis-animal-care and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains pipeworx-io/mcp-aphis-animal-care?

+

pipeworx-io/mcp-aphis-animal-care is maintained by pipeworx-io. The last recorded GitHub activity is dated 2026-09-14, with 0 open issues.

Are there alternatives to mcp-aphis-animal-care?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy mcp-aphis-animal-care to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: pipeworx-io/mcp-aphis-animal-care
[![Featured on ClaudeWave](https://claudewave.com/api/badge/pipeworx-io-mcp-aphis-animal-care)](https://claudewave.com/repo/pipeworx-io-mcp-aphis-animal-care)
<a href="https://claudewave.com/repo/pipeworx-io-mcp-aphis-animal-care"><img src="https://claudewave.com/api/badge/pipeworx-io-mcp-aphis-animal-care" alt="Featured on ClaudeWave: pipeworx-io/mcp-aphis-animal-care" width="320" height="64" /></a>

More MCP Servers

mcp-aphis-animal-care alternatives