get_groups
Pack: dogsapi · Endpoint: https://gateway.pipeworx.io/dogsapi/mcp
Get all AKC dog breed groups (e.g., Sporting, Herding, Terrier). Returns group names and descriptions.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/dogsapi/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_groups","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_groups', {});
Response shape
Always returns: count, groups
| Field | Type | Description |
|---|---|---|
count | number | Number of breed groups |
groups | array | Array of AKC dog breed groups |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "number",
"description": "Number of breed groups"
},
"groups": {
"type": "array",
"description": "Array of AKC dog breed groups",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Group identifier"
},
"name": {
"type": "string",
"description": "Group name"
}
},
"required": [
"id",
"name"
]
}
}
},
"required": [
"count",
"groups"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dogsapi": {
"url": "https://gateway.pipeworx.io/dogsapi/mcp"
}
}
}
See Getting Started for client-specific install steps.