cards
Server Details
Sports card database: card search, full set checklists, parallel lookup, card identification.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4/5 across 7 of 7 tools scored.
All seven tools have clearly distinct purposes: browse for hierarchy navigation, card_of_the_day for a daily feature, find_variants for parallel cards, get_card for single card detail, get_set_checklist for set checklists, identify_card for free-text parsing, and search_cards for full-text search. There is no overlap or ambiguity.
Most tool names follow a verb_noun pattern (browse, find_variants, get_card, get_set_checklist, identify_card, search_cards). The exception is card_of_the_day, which is a noun phrase, but it is a singular feature and does not disrupt overall consistency significantly.
With seven tools, the server is well-scoped for a sports card database. Each tool serves a distinct query need: navigation, search, identification, detail retrieval, and variant discovery. The count is neither too few nor too many.
The tool set covers the core read-only operations needed for a card database: browsing, searching, identifying, getting details, and listing sets. Minor gaps exist, such as lacking cross-set comparison or advanced filtering by product, but the overall surface is comprehensive for typical use.
Available Tools
7 toolsbrowseBrowse the card taxonomyAInspect
Navigate the database hierarchy: no arguments lists sports with card counts; sport lists years; sport + year lists products; product_id lists sets.
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | Year (requires sport), e.g. "1989" | |
| sport | No | Sport/category, e.g. "baseball" | |
| product_id | No | Product id to list its sets |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It transparently describes the tool's context-dependent behavior (no arguments vs. sport vs. sport+year vs. product_id). It does not mention auth or rate limits, but for a read-only browsing tool, this is sufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that efficiently conveys the behavior for all argument combinations. It is concise but lacks any extraneous information. A small improvement could be separating into bullet points for clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description fully explains the tool's behavior for all argument combinations. Despite no output schema, the description compensates by explicitly listing what each call returns. For a hierarchical browsing tool with three optional parameters, this is complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, meaning each parameter has a description. The description adds significant context beyond the schema by explaining the hierarchical relationship and the specific output for each argument combination.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: navigating a database hierarchy of sports, years, products, and sets. It specifies the output for different argument combinations, distinguishing it from sibling tools like search_cards or get_card.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly guides usage by showing how arguments change the output level. It does not explicitly state when not to use or mention alternatives, but the progression is clear. More explicit exclusions would elevate to 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
card_of_the_dayCard of the dayAInspect
MyCardfolio's featured card of the day (changes daily).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations, so description carries full burden. It mentions 'changes daily' which is useful, but does not explicitly state that it is a safe, read-only operation or any other behavioral traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded, no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, description should ideally clarify return format, but it only states purpose. Adequate for a simple daily card, but lacks completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, so baseline score of 4 is appropriate. Description adds nothing beyond schema, but schema has no need for additional meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it returns a featured card of the day, distinguishing it from siblings like search_cards or get_card which require specific queries or IDs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit when-to-use or when-not instructions, but the purpose implies use for a daily featured card. Lacks mention of alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_variantsFind card variantsAInspect
Find parallels/variants of a card: cards sharing the same year, product, card number, and subjects but belonging to a different set (e.g. base vs. refractor).
| Name | Required | Description | Default |
|---|---|---|---|
| card_id | Yes | The card_id of the card |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full behavioral disclosure. It implies a read-only query operation and explains matching logic, but does not detail output format, pagination, error handling, or side effects. Adequate but slightly lacking in depth.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no wasted words. The first sentence defines the tool's purpose, the second clarifies the matching criteria. Perfectly concise and structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple schema (one required parameter) and no output schema, the description sufficiently explains the tool's logic and selection criteria. Could be improved by mentioning the return type (list or single) or common fields, but overall complete for its complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 100% coverage for the single parameter card_id. The description adds meaningful context by explaining how card_id is used (to find cards sharing year, product, number, subjects), clarifying the variant logic beyond the schema's generic description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool finds parallels/variants of a card, specifying the matching criteria (year, product, card number, subjects) and contrasting with different set, which distinguishes it from sibling tools like get_card or search_cards.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear context for when to use this tool: when you need variant cards that share base attributes but differ in set. It does not explicitly mention when not to use it or provide alternative tool names, but the context is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_cardGet card detailsAInspect
Full detail for a single card by its card_id, plus a few related cards from the same set.
| Name | Required | Description | Default |
|---|---|---|---|
| card_id | Yes | The card_id of the card |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description mentions 'full detail' and 'related cards' but omits side effects, auth, or error handling. Adequate but could be more specific.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One concise sentence that front-loads the key action. Minor improvement could be structuring for quicker scanning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple single-parameter tool without output schema, description adequately covers what the tool returns, satisfying completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers 100% of parameter meaning; description adds that response includes related cards, but this is marginal above baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it retrieves full detail for a card and includes related cards, distinguishing it from sibling tools like search_cards or browse.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies use when card_id is known, but no explicit when-to-use or alternatives are provided. Could be improved by mentioning when not to use this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_set_checklistGet set checklistAInspect
Complete checklist of cards in a set by set_id, with set metadata. Output is capped at 500 cards.
| Name | Required | Description | Default |
|---|---|---|---|
| set_id | Yes | The set_id of the set |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It reveals that the output is capped at 500 cards, which is a key behavioral trait. However, it lacks details on ordering, pagination, or completeness of metadata beyond 'set metadata.' Adding more behavioral context would improve transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with two sentences. The first sentence defines the purpose clearly, and the second adds a critical behavioral cap. No redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (1 param, no output schema), the description is somewhat complete but lacks details about the return format. It mentions 'set metadata' but does not specify fields, which may be insufficient for an agent to use the output correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers the single parameter set_id with a description. The description does not add significant semantic value beyond restating the parameter's purpose. With schema coverage at 100%, a score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Complete checklist of cards in a set by set_id, with set metadata.' It uses specific verbs and resources, and distinguishes from sibling tools like get_card or search_cards by focusing on a full set listing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no explicit guidance on when to use this tool versus alternatives. While the purpose is clear, it does not specify when not to use it or mention related tools like search_cards for filtering.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
identify_cardIdentify a card from a descriptionAInspect
Parse a free-text card description or eBay-style listing title (e.g. "1989 Upper Deck Ken Griffey Jr #1 PSA 10") and return the best database matches with a confidence note.
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | Free-text card description or listing title |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided. Description states it 'returns best database matches with confidence note', indicating a read-only behavior. But does not explicitly declare safety traits (e.g., no side effects, auth needs). Given lack of annotations, the description is somewhat transparent but leaves room for uncertainty.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no fluff, front-loaded with the core action. Every word contributes to understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 1-param tool with no output schema, the description sufficiently covers input expectations and output shape. Could mention if authentication or rate limits apply, but not critical for basic use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% with a brief description. The tool description adds value by specifying the format of acceptable input (e.g., '1989 Upper Deck Ken Griffey Jr #1 PSA 10') and clarifying the output includes a 'confidence note', which goes beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the verb 'Parse' and the resource 'free-text card description or eBay-style listing title', and specifies the output: 'return the best database matches with a confidence note'. This distinguishes it from siblings like 'search_cards' which likely does broader searching.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description implies usage: parsing a free-text description to identify a card, with an example. However, it does not explicitly state when not to use or compare to alternatives like 'get_card' or 'search_cards'. Still, purpose is clear enough for an agent to infer correct context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_cardsSearch cardsAInspect
Full-text search over the MyCardfolio sports card database. Searches player/subject names, card numbers, products, sets, and card details. Optionally filter by sport and year.
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | Year filter, e.g. "1989" | |
| limit | No | Max results (default 20, max 50) | |
| query | Yes | Search terms, e.g. "griffey upper deck" | |
| sport | No | Sport/category filter, e.g. "baseball" |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Only states it performs search without disclosing behavioral traits like read-only nature, rate limits, or response structure. Minimal transparency beyond basic function.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no redundant information. Efficiently conveys purpose and optional parameters.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search tool with 4 parameters and no output schema, description adequately covers what the tool does and optional filters. Could mention default limit (20) or result format, but not critical.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. Description adds context by summarizing searched fields and filters, but does not significantly enhance understanding beyond schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states verb (search), resource (sports card database), and scope (player/subject names, card numbers, etc.). Distinguishes from siblings like get_card or identify_card by being a broad full-text search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Describes optional filters (sport, year) but lacks explicit when-to-use or when-not-to-use guidance compared to sibling tools. No mention of alternatives or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityDmaintenanceReal-time sports card pricing, market analysis, arbitrage detection, grading ROI, investment advice, and player stats (NBA/NFL/MLB). 9 tools for AI agents helping collectors and investors.92MIT
- AlicenseAqualityCmaintenanceSearch, browse, and analyze One Piece TCG cards with ground-truth data from the community-maintained card database. 4,348 cards across all sets (OP-01 through OP-14, Starter Decks, Event Boosters, and Promos).6432MIT
- AlicenseBqualityCmaintenanceVision-guided Pokémon TCG card identification server that matches exact printings using visual evidence and marketplace data.401MIT
- AlicenseAqualityBmaintenanceOn-chain TCG price oracle for the LitecoinVM ecosystem. 6 tools: search 433K+ trading cards, 60-day price history, Merkle proof verification on LiteForge (Chain 4441), Monte Carlo simulation, and AI card grading via Qwen 2.5 VL.7Business Source 1.1