rescuegroups_animal
Pack: rescuegroups · Endpoint: https://gateway.pipeworx.io/rescuegroups/mcp
Full record for one adoptable animal by RescueGroups id — description, all photos, breeds, adoption fee, temperament and the listing rescue/shelter with its contact details. Requires your own RescueGroups API key. Example: rescuegroups_animal({ animal_id: “8013243”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
animal_id | string | yes | RescueGroups animal id, as returned in the id field by rescuegroups_adoptable. |
_apiKey | string | yes | Your own RescueGroups API key. ${KEY_HELP} |
Example call
Arguments
{
"animal_id": "8013243",
"_apiKey": "your-rescuegroups-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/rescuegroups/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"rescuegroups_animal","arguments":{"animal_id":"8013243","_apiKey":"your-rescuegroups-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('rescuegroups_animal', {
"animal_id": "8013243",
"_apiKey": "your-rescuegroups-api-key"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"rescuegroups": {
"url": "https://gateway.pipeworx.io/rescuegroups/mcp"
}
}
}
See Getting Started for client-specific install steps.