sonoma_outcomes_summary
Pack: sonoma-animal-services · Endpoint: https://gateway.pipeworx.io/sonoma-animal-services/mcp
Summary counts of Sonoma County Animal Services outcomes (adopted, returned to owner, euthanized, transferred, etc.) grouped by outcome type, animal type, or month.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
since | string | no | ISO date (YYYY-MM-DD) — only count outcomes on/after this date. |
group_by | string | no | How to group the counts. |
Example call
Arguments
{
"group_by": "outcome_type"
}
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_outcomes_summary","arguments":{"group_by":"outcome_type"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sonoma_outcomes_summary', {
"group_by": "outcome_type"
});
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.