rescuegroups_species
Pack: rescuegroups · Endpoint: https://gateway.pipeworx.io/rescuegroups/mcp
The species vocabulary RescueGroups uses — singular, plural and young-animal words for each species it lists. Use it to get the exact species value rescuegroups_adoptable expects. Requires your own RescueGroups API key. Example: rescuegroups_species({ _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no | Rows per page, 1-250. Default 250 (the whole list is small). |
page | number | no | Page of results, starting at 1. |
_apiKey | string | yes | Your own RescueGroups API key. ${KEY_HELP} |
Example call
Arguments
{
"_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_species","arguments":{"_apiKey":"your-rescuegroups-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('rescuegroups_species', {
"_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.