ecommerce-custom-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MYSQL_HOST | Yes | The MySQL server host. | localhost |
| MYSQL_PORT | Yes | The MySQL server port. | 3306 |
| MYSQL_USER | Yes | The MySQL user name. | |
| MYSQL_DATABASE | Yes | The MySQL database name. | |
| MYSQL_PASSWORD | Yes | The 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
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": true
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| 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
| Name | Description |
|---|---|
| generate-product-description-template | create a compelling description for ecommerce products |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| products-catalog | Browse all products in the catalog |
| low-stock-products | List products with low inventory (quantity < 5) |
TDQS
Scored across 4 tools
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.
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.
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.
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.