Skip to main content
Glama
hello532

shop-mcp

by hello532

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.1

  • Disambiguation5/5

    Each tool has a distinct purpose: search_products finds products by criteria, get_product retrieves full details for one product, check_inventory queries stock per SKU by location, and low_stock_report lists variants under a threshold. No meaningful overlap or ambiguity exists.

    Naming Consistency4/5

    Most tools follow a clear verb_noun pattern (search_products, get_product, check_inventory), but low_stock_report is an adjective_noun phrase rather than verb_noun. The naming is still readable and predictable, with only this minor deviation.

    Tool Count5/5

    Four tools is a focused, appropriate set for a shop/inventory domain. Each tool covers a necessary operation without redundancy or bloat.

    Completeness4/5

    The set covers core read operations for products and inventory, including search, detail retrieval, per-SKU stock checks, and low-stock reporting. It lacks write operations (create/update/delete) or order-management functions, but the stated purpose appears read-only, so the gap is minor.

  • Average 4.6/5 across 4 of 4 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 5 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior2/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 for behavioral transparency. It does not explicitly state that the operation is read-only, nor does it mention authentication, rate limits, or other side effects. The read-only nature is implied but not disclosed.

    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 two concise sentences, front-loading the core purpose and then giving a practical usage guideline. There is no unnecessary detail or repetition.

    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?

    With no output schema, the description compensates by explaining the output shape: stock broken down by location with available, committed, and on-hand counts. It also provides the decision context, making it complete for this simple tool.

    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 already provides descriptions for both parameters ('Exact SKU to look up' and 'Maximum matching variants, 1-50'), so schema coverage is high. The tool description adds context about the response structure but does not further clarify parameter semantics beyond the 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?

    The description clearly states the tool returns stock levels for a SKU, broken down by location with available, committed, and on-hand counts. It also distinguishes this from product-level queries by noting the 'can we ship it' use case.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines5/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    Explicitly tells when to use this tool: when the question is about shippable availability ('can we ship it') rather than whether the item is sold ('do we sell it'). This provides clear guidance relative to sibling tools.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • 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 for behavioral transparency. It states that only identity and total inventory are returned, but it does not explicitly mention whether the operation is read-only or if there are other side effects, auth requirements, or rate limits.

    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 concise, using three focused sentences. It front-loads the primary purpose, then clarifies output limitations and usage context without unnecessary detail.

    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?

    The tool is simple and the description is sufficient for invocation, including query syntax and response scope. However, no output schema is provided and the description only names 'identity and total inventory' without specifying exact fields, leaving some minor ambiguity about the return shape.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters5/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The description adds meaningful detail to both parameters: query is explained with Shopify search syntax examples, and limit's range is reiterated in the description. Schema coverage is 100%, and the description enhances understanding of how to construct effective queries.

    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: searching/finding products by free text, vendor, or status. It distinguishes this from get_product by noting that this is the entry point when the handle is unknown.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines5/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description explicitly says to use this tool first when you do not already know a handle, and directs users to get_product for per-variant detail. This provides clear when-to-use and alternative guidance relative to sibling tools.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior4/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description carries the full burden of explaining behavior. It discloses that the tool 'Scans up to `scan` variants and filters locally,' including a performance tip to 'raise `scan` for a large catalogue.' This gives agents important context about potential limitations and how to adjust parameters accordingly.

    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 just two sentences, yet conveys purpose, usage, parameter behavior, and a practical tip. It is tightly worded without redundancy, making it easy to parse quickly.

    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 tool with no output schema and simple parameters, the description is essentially complete. It explains what is returned (variants at or below threshold), the sort order, and the parameter effects. A minor gap is not explicitly stating the output format, but that is not critical for this kind of report.

    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 already fully covers both parameters with descriptions. The tool description adds further meaning by explaining the interaction: the threshold determines what qualifies as low stock, and the scan parameter controls how many variants are examined. This enriches the schema's static explanations.

    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: 'Variants at or below a stock threshold, lowest first.' This is a specific action (reporting) on a specific resource (variants). It distinguishes itself from sibling tools like search_products and check_inventory by focusing on low-stock items.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines5/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description explicitly says 'Use for restock questions,' providing direct guidance on when to invoke this tool over alternatives. Though it doesn't name sibling tools, the use case is clearly differentiated from search/get/inventory operations.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior5/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations present, the description fully carries the burden of explaining behavior. It clearly indicates this is a read operation ('Read one product in full'), describes the extent of data returned (variants with SKU, price, stock level), and does not imply any side effects.

    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 concise and well-structured, using two sentences to convey the tool's purpose, the data returned, and the parameter constraint. No unnecessary words or redundancy.

    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?

    For a simple fetch operation without an output schema, the description provides sufficient context: what it does, what data is included, and how to specify the target. It does not leave critical gaps that would prevent correct usage.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters5/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The description adds meaningful constraints beyond the schema by stating that exactly one of the two parameters (id or handle) must be used. This clarifies the relationship and use of the parameters, which the schema alone does not fully convey.

    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 reads a single product in full, including variants with SKU, price, and stock level. It distinguishes itself from siblings like search_products and check_inventory by focusing on retrieving a specific product's complete data.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines5/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    It explicitly instructs that the product must be identified by handle or by gid://shopify/Product/... id and that exactly one of the two must be provided. This gives clear guidance on when to use this tool versus alternatives.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

shop-mcp MCP server – quality and maintenance score on Glama

Copy to your README.md:

Score Badge

shop-mcp MCP server – quality and maintenance score on Glama

Copy to your README.md:

Latest Blog Posts

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/hello532/shop-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server