wonderkraftz-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PORT | No | HTTP server port (HTTP transport only) | 3000 |
| SHOPIFY_STORE_DOMAIN | Yes | Shopify store domain (e.g., your-store.myshopify.com) | |
| SHOPIFY_STOREFRONT_ACCESS_TOKEN | Yes | Public Storefront API access token |
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
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_productsA | Search the Wonderkraftz product catalog by keyword, occasion, or gift type. Returns product names, prices, availability, and IDs. |
| get_product_detailsA | Get full details for a specific Wonderkraftz product including all variants, pricing, images, and options. Use handle (slug) or product ID. |
| get_collectionsA | List all product collections/categories in the Wonderkraftz store (e.g., Corporate Gifts, Wedding Gifts, Festival Hampers). |
| get_collection_productsB | Browse products within a specific Wonderkraftz collection by its handle/slug. |
| get_recommendationsA | Get product recommendations based on a specific Wonderkraftz product. Useful for suggesting similar or complementary gifts. |
| create_cartB | Create a new shopping cart with one or more Wonderkraftz products. Returns cart ID and checkout URL. |
| add_to_cartA | Add products to an existing Wonderkraftz shopping cart. |
| update_cartA | Update quantities of items in a Wonderkraftz shopping cart. Set quantity to 0 to remove an item. |
| remove_from_cartB | Remove specific items from a Wonderkraftz shopping cart by their line item IDs. |
| get_cartA | View the current contents of a Wonderkraftz shopping cart including items, quantities, totals, and checkout URL. |
| get_checkout_urlB | Get the checkout URL for a Wonderkraftz shopping cart to complete the purchase in a browser. |
| get_store_policiesA | Get Wonderkraftz store policies including shipping, returns, privacy, and terms of service. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| store-info | Wonderkraftz store information, branding, and payment settings |
| collections | List of all Wonderkraftz product collections |
TDQS
Scored across 12 tools
Each tool has a distinct and unambiguous purpose: cart management, product browsing, recommendations, and store policies. There is no overlap or potential for confusion.
All tool names follow a consistent verb_noun pattern with snake_case (e.g., add_to_cart, get_collections). The naming is predictable and clear.
12 tools is well-scoped for an e-commerce server, covering essential operations without being too sparse or overwhelming.
The tool set covers the full shopping workflow: cart CRUD, product search and discovery, recommendations, and store policies. A minor gap is the lack of a tool to browse all products without a collection search, but search_products effectively fills that role.