Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MYSQL_HOSTYesThe MySQL server host.localhost
MYSQL_PORTYesThe MySQL server port.3306
MYSQL_USERYesThe MySQL user name.
MYSQL_DATABASEYesThe MySQL database name.
MYSQL_PASSWORDYesThe MySQL password.

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.4/5.0

Scored across 4 tools

Disambiguation2/5

add_product and add_product_smart overlap significantly since both create a product, differing only by optional AI description generation. An agent could easily select the wrong one. The other tools are distinct enough.

Naming Consistency4/5

Names mostly follow a clear verb_noun snake_case pattern: add_product, get_product_by_id, delete_product. add_product_smart is a minor deviation but remains readable and predictable.

Tool Count4/5

Four tools is a reasonable size for a focused product management server. However, add_product_smart feels like a variant rather than a distinct capability, so the set is slightly less tight than it could be.

Completeness3/5

The server covers create, read, and delete for products, but misses obvious update and list/search operations. Agents can do basic workflows but will hit dead ends when trying to modify products or view all products.

Maintenance

ActivityMaintained
ResponsivenessNo issues