Skip to main content
Glama

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": true
}
prompts
{
  "listChanged": true
}
resources
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
add_productB

Create a new product with sku, name, (optional) description, price, and quantity.

add_product_smartA

Create a new product with smart ai generated description if missing

get_product_by_idA

Fetch a single product by numeric ID

delete_productA

Delete a product by id. Returns { deleted: boolean }.

Prompts

Interactive templates invoked by user choice

NameDescription
generate-product-description-templatecreate a compelling description for ecommerce products

Resources

Contextual data attached and managed by the client

NameDescription
products-catalogBrowse all products in the catalog
low-stock-productsList products with low inventory (quantity < 5)

TDQS

B3.2/5.0

Scored across 4 tools

Disambiguation2/5

add_product and add_product_smart have heavily overlapping purposes—both create a product, differing only in whether a description is AI-generated. An agent could easily pick the wrong one, and there is no guidance on when to prefer the 'smart' variant.

Naming Consistency4/5

All names are snake_case with a verb-first pattern (add_*, get_*, delete_*), which is mostly predictable. Minor deviations exist: the 'smart' suffix and 'by_id' qualifier break the strict verb_noun mold but remain readable.

Tool Count3/5

Four tools is on the thin side for an e-commerce domain and the set is dominated by creation variants. It's not egregiously small, but it feels under-scoped given the domain.

Completeness2/5

The surface covers create (twice), read-by-id, and delete, but lacks update and any list/search operation—core operations for managing a product catalog. Agents will hit dead ends when they need to modify or enumerate products.