get_card
Pack: tcgdex · Endpoint: https://gateway.pipeworx.io/tcgdex/mcp
Look up a single Pokémon TCG (or other trading card game) card by its TCGdex id (e.g. “swsh3-136”). Returns full card details: category, rarity, hp, types, stage, set, illustrator, attacks, abilities, and a high-quality image URL.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | TCGdex card id, e.g. “swsh3-136”. |
Example call
Arguments
{
"id": "swsh3-136"
}
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_card","arguments":{"id":"swsh3-136"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_card', {
"id": "swsh3-136"
});
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.