austin_search_animal
Pack: austin-animal-services · Endpoint: https://gateway.pipeworx.io/austin-animal-services/mcp
Look up a specific animal at the Austin Animal Center by its animal ID, name, or breed, across both current intake and outcome records. Use for “what happened to animal A12345” or “is there a [breed] at Austin Animal Center”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
animal_id | string | no | Exact Austin Animal Center animal ID, e.g. “A12345”. |
name | string | no | Animal name (partial match, case-insensitive), e.g. “Rosie”. |
breed | string | no | Breed (partial match, case-insensitive), e.g. “Husky”, “Pit Bull”. |
limit | number | no | Max rows per dataset (1-200, default 20). |
Example call
Arguments
{
"breed": "Husky"
}
curl
curl -X POST https://gateway.pipeworx.io/austin-animal-services/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"austin_search_animal","arguments":{"breed":"Husky"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('austin_search_animal', {
"breed": "Husky"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"austin-animal-services": {
"url": "https://gateway.pipeworx.io/austin-animal-services/mcp"
}
}
}
See Getting Started for client-specific install steps.