MCP Server
Model Context ProtocolRiftScribe exposes a Model Context Protocol server so AI assistants like Claude can look up Riftbound cards directly — no copy-pasting, no switching tabs.
https://riftscribe.gg/mcpClaude Desktop
Add RiftScribe as a custom MCP server in your Claude Desktop config file.
- 1
Open your Claude Desktop configuration file:
macOS~/Library/Application Support/Claude/claude_desktop_config.jsonWindows%APPDATA%\Claude\claude_desktop_config.json - 2
Add the RiftScribe server to your config:
{ "mcpServers": { "riftscribe": { "type": "http", "url": "https://riftscribe.gg/mcp" } } } - 3
Restart Claude Desktop. You should see a hammer icon in the chat input — that means tools are active.
- 4
Try it out:
“What rare fury cards are in set OGN?”“Tell me about the card OGN-1”“What factions exist in Riftbound?”
Other MCP Clients
Any client that supports the Streamable HTTP MCP transport can connect using the server URL.
Cursor / VS Code (via MCP extension)
{
"mcp": {
"servers": {
"riftscribe": {
"type": "http",
"url": "https://riftscribe.gg/mcp"
}
}
}
}Direct HTTP (for custom integrations)
POST https://riftscribe.gg/mcp
Content-Type: application/json
{ "jsonrpc": "2.0", "method": "tools/list", "id": 1 }Available Tools
The server exposes three read-only tools. All parameters are optional unless marked required.
search_cardsSearch Riftbound cards by name, set, faction, or rarity.
Parameters
querystring?Substring match against card namesset_idstring?Filter by set ID (e.g. "OGN")factionstring?Filter by faction (e.g. "fury")raritystring?Filter by rarity (e.g. "rare")limitint?Max results, 1–100 (default 20)Example prompt
“Find all rare fury cards from set OGN”
get_cardGet full details for a card by ID — stats, ability text, keywords, tags, and art URL.
Parameters
card_idstringFull ID (ogn-001-298) or short format (OGN-1)Example prompt
“What does the card OGN-1 do?”
get_filtersList all available sets, factions, and rarities. Useful before searching to discover valid values.
Example prompt
“What factions are in the game?”