build
Pack: guild-wars-2 · Endpoint: https://gateway.pipeworx.io/guild-wars-2/mcp
Current build id.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/guild-wars-2/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"build","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('build', {});
Response shape
Always returns: id
| Field | Type | Description |
|---|---|---|
id | number | Current build ID |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Current build ID"
}
},
"required": [
"id"
],
"description": "Current Guild Wars 2 build ID"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"guild-wars-2": {
"url": "https://gateway.pipeworx.io/guild-wars-2/mcp"
}
}
}
See Getting Started for client-specific install steps.