random_card
Pack: scryfall · Endpoint: https://gateway.pipeworx.io/scryfall/mcp
Get a random Magic: The Gathering (MTG) card, optionally filtered by a Scryfall query (e.g. “is:commander”, “c:blue”).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Optional Scryfall filter query. |
Example call
Arguments
{
"query": "is:commander"
}
curl
curl -X POST https://gateway.pipeworx.io/scryfall/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"random_card","arguments":{"query":"is:commander"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('random_card', {
"query": "is:commander"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"scryfall": {
"url": "https://gateway.pipeworx.io/scryfall/mcp"
}
}
}
See Getting Started for client-specific install steps.