rescuegroups_breeds

Pack: rescuegroups · Endpoint: https://gateway.pipeworx.io/rescuegroups/mcp

Breeds RescueGroups recognises for a species, for building an exact breed filter. Requires your own RescueGroups API key. Example: rescuegroups_breeds({ species: “dogs”, limit: 50, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
speciesstringnoSpecies whose breeds to list, plural and lower-case, e.g. “dogs”. Omit for every breed across all species (thousands of rows — page it).
limitnumbernoRows per page. This endpoint allows up to 10000. Default 250.
pagenumbernoPage of results, starting at 1.
_apiKeystringyesYour own RescueGroups API key. ${KEY_HELP}

Example call

Arguments

{
  "species": "dogs",
  "limit": 50,
  "_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_breeds","arguments":{"species":"dogs","limit":50,"_apiKey":"your-rescuegroups-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('rescuegroups_breeds', {
  "species": "dogs",
  "limit": 50,
  "_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.

Regenerated from source · build September 5, 2026