character
Pack: giantbomb · Endpoint: https://gateway.pipeworx.io/giantbomb/mcp
Single character.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
guid_or_id | string | yes |
Example call
Arguments
{
"guid_or_id": "34265"
}
curl
curl -X POST https://gateway.pipeworx.io/giantbomb/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"character","arguments":{"guid_or_id":"34265"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('character', {
"guid_or_id": "34265"
});
Response shape
| Field | Type | Description |
|---|---|---|
error | string | Error message if not found |
id | number | Character ID |
guid | string | Globally unique identifier |
name | string | Character name |
deck | string | Short description |
description | string | Full description |
image | object | Character image data |
url | string | Giant Bomb URL |
status_code | number | HTTP status code |
version | string | API version |
Full JSON Schema
{
"type": "object",
"description": "Single character details",
"properties": {
"error": {
"type": "string",
"description": "Error message if not found"
},
"id": {
"type": "number",
"description": "Character ID"
},
"guid": {
"type": "string",
"description": "Globally unique identifier"
},
"name": {
"type": "string",
"description": "Character name"
},
"deck": {
"type": "string",
"description": "Short description"
},
"description": {
"type": "string",
"description": "Full description"
},
"image": {
"type": "object",
"description": "Character image data"
},
"url": {
"type": "string",
"description": "Giant Bomb URL"
},
"status_code": {
"type": "number",
"description": "HTTP status code"
},
"version": {
"type": "string",
"description": "API version"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"giantbomb": {
"url": "https://gateway.pipeworx.io/giantbomb/mcp"
}
}
}
See Getting Started for client-specific install steps.