clan_search

Pack: clash-royale · Endpoint: https://gateway.pipeworx.io/clash-royale/mcp

Clan search.

Parameters

NameTypeRequiredDescription
namestringno
locationIdnumberno
minMembersnumberno
maxMembersnumberno
minScorenumberno
limitnumberno
afterstringno
beforestringno

Example call

Arguments

{
  "name": "Dragons"
}

curl

curl -X POST https://gateway.pipeworx.io/clash-royale/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"clan_search","arguments":{"name":"Dragons"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('clan_search', {
  "name": "Dragons"
});

More examples

{
  "name": "Elite",
  "minMembers": 30,
  "minScore": 5000,
  "limit": 10
}

Response shape

FieldTypeDescription
itemsarraySearch results
pagingobjectPagination info
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "tag": {
            "type": "string",
            "description": "Clan tag"
          },
          "name": {
            "type": "string",
            "description": "Clan name"
          },
          "type": {
            "type": "string",
            "description": "Clan type"
          },
          "description": {
            "type": "string",
            "description": "Clan description"
          },
          "badgeId": {
            "type": "number",
            "description": "Badge ID"
          },
          "clanScore": {
            "type": "number",
            "description": "Clan score"
          },
          "memberCount": {
            "type": "number",
            "description": "Member count"
          },
          "requiredTrophies": {
            "type": "number",
            "description": "Required trophies"
          },
          "location": {
            "type": "object",
            "description": "Clan location"
          }
        }
      },
      "description": "Search results"
    },
    "paging": {
      "type": "object",
      "properties": {
        "cursors": {
          "type": "object",
          "description": "Pagination cursors"
        }
      },
      "description": "Pagination info"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "clash-royale": {
      "url": "https://gateway.pipeworx.io/clash-royale/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build June 12, 2026