Wraps the free Deck of Cards API so you can shuffle decks, draw cards, and manage piles programmatically from Claude. It's hosted via Pipeworx's gateway, which means zero setup and no API keys to manage. Useful if you're prototyping card game logic, building poker hand evaluators, or teaching probability concepts with live shuffles and draws. The ask_pipeworx interface lets you request operations in plain English rather than calling tools directly. Part of a larger gateway that connects to 600+ data sources, but this endpoint isolates just the card deck functionality if that's all you need.
Deck of Cards MCP — wraps deckofcardsapi.com (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"deckofcards": {
"url": "https://gateway.pipeworx.io/deckofcards/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Deckofcards data" })
The gateway picks the right tool and fills the arguments automatically.
MIT