get_groups

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

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/get_groups for the schema, then POST the same URL with its arguments for the data.

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

FieldTypeDescription
countnumberNumber of breed groups
groupsarrayArray 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.

Regenerated from source · build September 23, 2026