webhallen-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| WEBHALLEN_COOKIES | No | Existing webhallen_session cookie value (Option C). | |
| WEBHALLEN_PASSWORD | No | Your Webhallen password for automatic login (Option A). | |
| WEBHALLEN_USERNAME | No | Your Webhallen username for automatic login (Option A). |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| loginA | Log in to Webhallen with username and password. Required before using wishlist tools. Alternatively set WEBHALLEN_USERNAME and WEBHALLEN_PASSWORD env vars. |
| search_productsA | Search for products on Webhallen by keyword. Returns product list with IDs, names, prices, and stock info. Use the product IDs with add_to_wishlist. Does not require login. |
| get_productA | Get details about a specific Webhallen product by ID. Useful for verifying product info before adding to a shared wishlist. |
| list_wishlistsA | List all your Webhallen wishlists (önskelistor) with their IDs and contents. This shows the shared shopping lists. |
| get_wishlistA | Get the contents of a specific wishlist by ID. Shows all products in the shared shopping list. |
| create_wishlistA | Create a new Webhallen wishlist (önskelista). Use this to create a shared shopping list for the office. |
| add_to_wishlistA | Add a product to a Webhallen wishlist. Use search_products first if you need the product ID. Use create_wishlist first if the list doesn't exist yet. |
| delete_wishlistA | Delete a Webhallen wishlist and all its contents. |
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 8 tools
Most tools are clearly separated by resource and action: product search/detail, wishlist lifecycle, and auth. The only real ambiguity is list_wishlists versus get_wishlist, since both return wishlist contents, though one is all lists and the other is a specific list; the descriptions mostly clarify this.
All tool names use lowercase snake_case with a verb-first style. Product and wishlist CRUD tools follow a verb_noun pattern, while login and add_to_wishlist are minor deviations but still clear and predictable.
8 tools is well-scoped for a Webhallen wishlist integration: auth, product lookup, and wishlist CRUD each have a clear place. There is no unnecessary duplication or bloat.
The surface covers login, product search/detail, and create/get/list/delete wishlists, with add_to_wishlist for populating a list. However, there is no remove_from_wishlist or update wishlist metadata, so agents cannot correct mistakes or rename lists—a notable lifecycle gap.