Skip to main content
Glama

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 7 of 7 tools scored.

Server CoherenceA
Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness4/5

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 tools
browseBrowse 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.

ParametersJSON Schema
NameRequiredDescriptionDefault
yearNoYear (requires sport), e.g. "1989"
sportNoSport/category, e.g. "baseball"
product_idNoProduct id to list its sets
Behavior4/5

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.

Conciseness4/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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).

ParametersJSON Schema
NameRequiredDescriptionDefault
card_idYesThe card_id of the card
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
card_idYesThe card_id of the card
Behavior3/5

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.

Conciseness4/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
set_idYesThe set_id of the set
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
descriptionYesFree-text card description or listing title
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
yearNoYear filter, e.g. "1989"
limitNoMax results (default 20, max 50)
queryYesSearch terms, e.g. "griffey upper deck"
sportNoSport/category filter, e.g. "baseball"
Behavior2/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Real-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.
    9
    2
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Search, 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).
    6
    43
    2
    MIT
  • A
    license
    B
    quality
    C
    maintenance
    Vision-guided Pokémon TCG card identification server that matches exact printings using visual evidence and marketplace data.
    40
    1
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    On-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.
    7
    Business Source 1.1

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources