clan_search
Pack: clash-royale · Endpoint: https://gateway.pipeworx.io/clash-royale/mcp
Clan search.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | |
locationId | number | no | |
minMembers | number | no | |
maxMembers | number | no | |
minScore | number | no | |
limit | number | no | |
after | string | no | |
before | string | no |
Example call
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":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
items | array | Search results |
paging | object | Pagination 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.