get_set
Pack: tcgdex · Endpoint: https://gateway.pipeworx.io/tcgdex/mcp
Look up a single Pokémon TCG (or other trading card game) set by its TCGdex id (e.g. “swsh3”). Returns full set details: serie, release date, card counts, and the list of cards in the set.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | TCGdex set id, e.g. “swsh3”. |
Example call
Arguments
{
"id": "swsh3"
}
curl
curl -X POST https://gateway.pipeworx.io/tcgdex/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_set","arguments":{"id":"swsh3"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_set', {
"id": "swsh3"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"tcgdex": {
"url": "https://gateway.pipeworx.io/tcgdex/mcp"
}
}
}
See Getting Started for client-specific install steps.