Skip to main content
Glama
ZaynTawfik

UCP MCP Storefront

by ZaynTawfik

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
searchA

Search the product catalog.

Args: query: Free-text search query (matches title, description, tags). max_price: Maximum price in cents (e.g. 10000 = $100.00). Optional. category: Filter by tag/category. Optional.

Returns a UCP catalog search response with matching products.

get_productA

Get full product details by ID.

Args: product_id: The product identifier (e.g. "prod_001").

Returns a UCP get_product response, or an error message if not found.

create_cartA

Create a new empty shopping cart.

Returns a UCP cart response with a unique cart ID (crt_...).

add_to_cartA

Add a product to an existing cart.

Args: cart_id: The cart identifier (e.g. "crt_..."). product_id: The product identifier (e.g. "prod_001"). quantity: Number of units to add (default 1).

Validates that the product exists and has sufficient inventory. Returns the updated UCP cart, or an error message on failure.

view_cartA

View the current contents of a cart.

Args: cart_id: The cart identifier (e.g. "crt_...").

Returns the UCP cart with line items and running totals (in cents).

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.3/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a clear, distinct purpose: cart creation, item addition, cart viewing, product retrieval, and catalog search. No two tools overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (add_to_cart, create_cart, get_product, search, view_cart). The naming is predictable and easy for an agent to follow.

Tool Count5/5

With exactly 5 tools, the surface is well-scoped for a storefront domain. Each tool serves a necessary function without redundancy or bloat.

Completeness4/5

Core cart and product operations are covered. However, missing cart update (quantity change), remove item, or checkout functionality leaves minor gaps that agents might need to work around.

Maintenance

ActivityInactive
ResponsivenessNo issues