Flesh and Blood Card Database MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Flesh and Blood Card Database MCP ServerSearch for the card 'Command and Conquer'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Flesh and Blood Card Database MCP Server
Breaking Change (MCP 2026-07-28): This server has migrated to the MCP 2026-07-28 protocol revision. Legacy SSE endpoints (
/sse,/sse/message) have been removed and will return404. Existing clients must change their connection URL from/sseto/mcp. Theinitializehandshake and session management have been removed from the protocol; the server is now fully stateless. Clients using older MCP protocol versions will not be able to connect.
A Model Context Protocol (MCP 2026-07-28) server for searching and retrieving information about Flesh and Blood Trading Card Game (FAB TCG) cards. This server is deployed on Cloudflare Workers as a stateless Streamable HTTP service and provides tools for card search, print variation lookup, card detail retrieval, and product catalog browsing.
CardVault API Migration Status
The official FAB card database has moved to cardvault.fabtcg.com and uses a new API host (api.cardvault.fabtcg.com).
Analysis date: 2026-03-07
Investigation + migration design:
docs/cardvault-api-analysis.mdImplementation status:
search_fab_cards/get_fab_card_prints/get_card_detail/get_fab_productsnow use CardVault API (api.cardvault.fabtcg.com)
Related MCP server: Scryfall MCP Server
Features
This MCP server provides the following tools. All tools return structured output via structuredContent (in addition to the content text fallback), conforming to their declared outputSchema.
1. Search FaB Cards (search_fab_cards)
Search for Flesh and Blood cards by name. Returns a structured array of matching cards, including:
Card ID and name
Card images
Card attributes (pitch, cost, power, defense)
Card text and type information
Links to the official card page
2. Get FaB Card Prints (get_fab_card_prints)
Retrieve all print variations of a specific card using its card ID. Returns a structured array of prints, including:
Print ID and associated card ID
Print name and display name
Print images (small, normal, large sizes)
Layout information
Finish types available
3. Get Card Detail (get_card_detail)
Get detailed information about a specific card, including non-English text. Returns a structured object containing:
Complete card data in English and Japanese (when available)
Card attributes (pitch, power, defense, cost)
Publication details (set, rarity, artist)
All available card variations
4. Get FaB Products (get_fab_products)
Retrieve product groups from cardvault.fabtcg.com/products. Returns a structured object containing:
Product group name and type
Release dates
Nested product entries (slug, language, printed date)
Pagination metadata (
next,previous,nextPage,previousPage)
Deployment
This project is designed to be deployed on Cloudflare Workers.
Prerequisites
Node.js and npm installed
Cloudflare account
Wrangler CLI installed (
npm install -g wrangler)
Deployment Steps
Clone this repository:
git clone <repository-url> cd fab-card-db-mcpInstall dependencies:
yarn installAuthenticate with Cloudflare:
wrangler loginDeploy to Cloudflare Workers:
wrangler deploy
The server will be deployed to the domain configured in wrangler.jsonc (currently fab-card-db-mcp.discord.jp).
Using the MCP Server
Endpoints
The server exposes the following endpoints:
POST /mcp- Streamable HTTP MCP endpoint (MCP 2026-07-28)GET /.well-known/mcp.json- MCP server discovery manifest
Example Usage
When connected to an MCP client, you can use the provided tools as follows:
Card Search Example
// Using the search_fab_cards tool
const searchResults = await use_mcp_tool({
server_name: "Flesh and Blood Card Search API",
tool_name: "search_fab_cards",
arguments: {
query: "Awakening"
}
});
// Results will contain card information matching the search queryPrint Variations Example
// Using the get_fab_card_prints tool
const printVariations = await use_mcp_tool({
server_name: "Flesh and Blood Card Search API",
tool_name: "get_fab_card_prints",
arguments: {
cardId: "CARD_ID_HERE" // Replace with an actual card ID from search results
}
});
// Results will contain all print variations for the specified cardConnecting with MCP Clients
This server uses the MCP 2026-07-28 Streamable HTTP transport. Clients that support this protocol revision can connect to:
Streamable HTTP endpoint:
https://fab-card-db-mcp.discord.jp/mcpDiscovery manifest:
https://fab-card-db-mcp.discord.jp/.well-known/mcp.json
MCP 2026-07-28 compliant clients can discover the server automatically via the .well-known/mcp.json manifest, which advertises the /mcp endpoint.
Migration required: Legacy SSE-based connections (
/sse) are no longer supported and will return404. If you were previously connecting tohttps://fab-card-db-mcp.discord.jp/sse, change your connection URL tohttps://fab-card-db-mcp.discord.jp/mcp. Your client must also support the MCP 2026-07-28 Streamable HTTP transport.
License
See the LICENSE file for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceMagic: The Gathering MCP server with card search, rules lookup, deck analysis, and Commander intelligenceLast updated141384MIT
- Alicense-qualityDmaintenanceMCP server for searching and retrieving Magic: The Gathering card information via the Scryfall API, with support for field presets, multiple output formats, and automatic rate limiting.Last updated24MIT
- AlicenseAqualityAmaintenanceAn MCP server for searching and aggregating Disney Lorcana cards, enabling card lookup, deck building, and statistical analysis.Last updated101MIT
- Alicense-qualityDmaintenanceMCP server that searches and retrieves Magic: The Gathering card data from the Scryfall API.Last updated24MIT
Related MCP Connectors
Official remote MCP server for Archivist AI TTRPG campaign memory: characters, sessions, and more.
Scryfall MCP — Magic: The Gathering card database.
MCP server for accessing curated awesome list documentation
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/japan4415/fab-card-db-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server