nemlig-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| NEMLIG_PASS | No | Your nemlig.com password | |
| NEMLIG_USER | No | Your nemlig.com username/email |
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": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_productsA | Search the nemlig.com catalogue. Args: query: Search term. Danish terms match best, e.g. "kaffebønner", "mælk". limit: Maximum number of products to return (1-50). Returns: Matching products with Id, Name, Brand, Price and availability. Use the Id with get_product_details or set_basket_quantity. |
| get_product_detailsA | Fetch full details for one product, including nutrition and allergens. Args: product_id: Product Id from search_products, e.g. "5070417". |
| get_basketA | Show the current shopping basket with line items and prices. Delivery and invoice addresses are redacted. |
| set_basket_quantityA | Set how many units of a product the basket should contain. The quantity is absolute, not a delta. It is the number of units to end up with, so setting 2 on a line that currently holds 5 removes 3 of them, and setting 0 removes the product entirely. To add to a line that may already exist, read its current Quantity with get_basket and pass the new total. This changes the user's real basket on nemlig.com. It does not place an order or charge anything -- the user completes checkout themselves. Args: product_id: Product Id from search_products, e.g. "5070417". quantity: Units the basket should end up with. 0 removes the product. Returns: The updated basket, with addresses redacted. |
| get_order_historyA | List previous orders, most recent first. Args: skip: Number of orders to skip, for pagination. take: Number of orders to return (1-50). Returns: Orders with Id, OrderNumber, Total and delivery window. Use Id with get_order_details. Addresses are redacted. |
| get_order_detailsA | Fetch the line items of one past order. Args: order_id: Numeric order Id from get_order_history (not OrderNumber). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool targets a distinct resource and action: search vs. details, basket vs. order, and list vs. detail vs. modify. No two tools overlap in purpose.
All tools follow the consistent verb_noun pattern in snake_case: search_products, get_product_details, get_basket, get_order_details, set_basket_quantity, get_order_history.
Six tools is well-scoped for a grocery shopping assistant, covering product discovery, basket management, and order history without unnecessary bloat.
The domain is fully covered: product search/detail, basket read/update (including removal via quantity 0), and order list/detail. Checkout is intentionally omitted as the user completes it manually.