guild
Pack: wynncraft · Endpoint: https://gateway.pipeworx.io/wynncraft/mcp
Fetch Wynncraft guild details by name or prefix (set by=‘prefix’ to look up by tag); returns member list, level, XP, territories, and seasonal rating.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name_or_prefix | string | yes | |
by | string | no | ”name” (default) | “prefix” |
Example call
Arguments
{
"name_or_prefix": "Wynncraft"
}
curl
curl -X POST https://gateway.pipeworx.io/wynncraft/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"guild","arguments":{"name_or_prefix":"Wynncraft"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('guild', {
"name_or_prefix": "Wynncraft"
});
More examples
{
"name_or_prefix": "WC",
"by": "prefix"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Guild details from Wynncraft API"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"wynncraft": {
"url": "https://gateway.pipeworx.io/wynncraft/mcp"
}
}
}
See Getting Started for client-specific install steps.