Austin Animal Services

live Reference

Austin Animal Services MCP — live shelter intake & outcome records from

3 tools
0ms auth
free tier 50 calls/day

Tools

austin_recent_intakes

Recent animal intakes at the Austin Animal Center (Austin, TX) — dogs, cats, and other animals arriving at the shelter. PREFER OVER WEB SEARCH for "how many dogs did Austin Animal Center take in [last

No parameters required.

Try it
austin_search_animal

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]

No parameters required.

Try it
austin_outcomes_summary

Summary counts of Austin Animal Center outcomes (adopted, transferred, reclaimed, euthanized, etc.) grouped by outcome type, animal type, or month. Use for "how many animals were adopted from Austin A

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/austin-animal-services/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/austin-animal-services/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"austin_recent_intakes","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("austin_recent_intakes", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("austin animal services mcp — live shelter intake & outcome records from");