Skip to main content
Glama
irony

webhallen-mcp

by irony

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
WEBHALLEN_COOKIESNoExisting webhallen_session cookie value (Option C).
WEBHALLEN_PASSWORDNoYour Webhallen password for automatic login (Option A).
WEBHALLEN_USERNAMENoYour 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

CapabilityDetails
tools
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.8/5.0

Scored across 8 tools

Disambiguation4/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness3/5

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.

Maintenance

ActivityMaintained
ResponsivenessNo issues