sonoma_search_animal
Pack: sonoma-animal-services · Endpoint: https://gateway.pipeworx.io/sonoma-animal-services/mcp
Look up an animal at Sonoma County Animal Services by id, name, or breed. Use in_shelter_only=true to answer “is there a [breed] at the shelter right now” / “is there a lost husky at Sonoma County animal services” — an animal with no outcome yet is still in the shelter.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
animal_id | string | no | Exact animal ID, e.g. “A441880”. |
name | string | no | Animal name (partial match, case-insensitive). |
breed | string | no | Breed (partial match, case-insensitive), e.g. “Husky”, “Pit Bull”. |
in_shelter_only | boolean | no | If true, only return animals that have not yet had an outcome (still at the shelter). Default false (returns full intake/outcome history). |
limit | number | no | Max rows (1-200, default 20). |
Example call
Arguments
{
"breed": "Husky",
"in_shelter_only": true
}
curl
curl -X POST https://gateway.pipeworx.io/sonoma-animal-services/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sonoma_search_animal","arguments":{"breed":"Husky","in_shelter_only":true}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sonoma_search_animal', {
"breed": "Husky",
"in_shelter_only": true
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sonoma-animal-services": {
"url": "https://gateway.pipeworx.io/sonoma-animal-services/mcp"
}
}
}
See Getting Started for client-specific install steps.