Loading…
Loading…
RiftScribe 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/mcpAdd RiftScribe as a custom MCP server in your Claude Desktop config file.
Open your Claude Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd the RiftScribe server to your config:
{
"mcpServers": {
"riftscribe": {
"type": "http",
"url": "https://riftscribe.gg/mcp"
}
}
}Restart Claude Desktop. You should see a hammer icon in the chat input — that means tools are active.
Try it out:
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 }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), short format (OGN-1), or variant ref: OGN-100a (alt art), OGN-301-star (signature), UNL-T03 (token)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?”