nemlig-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@nemlig-mcpfind oat milk"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
nemlig-mcp
Unofficial local MCP for nemlig.com, danish delivery service
Built as a thin layer over nemlig_cli,
which already solves the hard parts: the three-step XSRF/bearer/login flow, the
cookie-backed session, the two different API hosts, and the GetAsJson
endpoints. This package adds a token-refresh loop, a privacy filter, and a
curated tool surface.
Tools
Tool | Writes? | Description |
| no | Search the catalogue |
| no | Nutrition, allergens, attributes |
| no | Current basket contents |
| yes | Add a product to the basket |
| no | Previous orders |
| no | Line items of one past order |
Related MCP server: MCP Picnic
What this server deliberately cannot do
It cannot place an order or read your payment cards. Nemlig's API exposes
POST /webapi/Order/PlaceOrderLoggedIn (which charges a saved card) and
GET /webapi/Checkout/GetCreditCards. nemlig_cli implements neither, and this
server does not add them.
The tool surface is an allowlist, not a filtered view of the whole API, so an
endpoint cannot become reachable by accident. A test asserts this
(tests/test_server.py). add_to_basket is the only
tool that changes state, and filling a basket is reversible on the website.
Privacy
Basket and order responses embed the account holder's name, street address and
phone number. Everything a tool returns lands in the model's context and in the
conversation transcript, so those fields are replaced with a marker before they
leave the server. See privacy.py.
Setup
Clone alongside the CLI — pyproject.toml expects it as a sibling:
code/
├── nemlig_cli/
└── nemlig-mcp/git clone https://github.com/eisbaw/nemlig_cli.git
git clone https://github.com/kraenhansen/nemlig-mcp.git
cd nemlig-mcp && uv syncCredentials come from NEMLIG_USER / NEMLIG_PASS, falling back to the CLI's
~/.config/nemlig/login.json.
Register with Claude
claude mcp add nemlig -- uv --directory /absolute/path/to/nemlig-mcp run nemlig-mcpOr in .mcp.json:
{
"mcpServers": {
"nemlig": {
"command": "uv",
"args": ["--directory", "/absolute/path/to/nemlig-mcp", "run", "nemlig-mcp"],
"env": { "NEMLIG_USER": "you@example.com", "NEMLIG_PASS": "..." }
}
}
}Notes on the upstream CLI
Two things this package works around, both worth fixing upstream:
Progress spinners write to stdout, including from a background thread in
login(). On a stdio MCP server stdout is the JSON-RPC transport, so every CLI call is wrapped in a redirect (_compat.py). Fix: print progress to stderr.Optional dependencies are declared as required.
opencv-python,pyzbar,Pillow,anthropic,google-api-python-clientandopenfoodfactsare all guarded withtry/except ImportErrorin the code, but listed as hard dependencies, so installing the CLI as a library pulls in all of them. Fix: move them to[project.optional-dependencies].
Development
uv run pytestThe tests make no network calls and need no credentials.
Disclaimer
Not affiliated with nemlig.com. Uses a private API that may change or break, and automated access may conflict with their terms of service.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityDmaintenanceEnables AI assistants to interact with Mathem.se, a Swedish online grocery store, allowing users to search for ingredients, add items to their shopping basket, and manage recipes through natural language.Last updated41
- Alicense-qualityAmaintenanceEnables AI assistants to interact with Picnic online supermarket for grocery shopping, meal planning, cart management, delivery tracking, and budget-conscious shopping in Netherlands and Germany.Last updated11589MIT
- Flicense-qualityDmaintenanceEnables searching for groceries and automatically adding items to cart through various grocery vendor APIs like Rami Levy and Keshet.Last updated3
- Alicense-quality-maintenanceEnables agentic grocery shopping on Oda (Norway) and Mathem (Sweden) platforms through an MCP-compatible interface. Users can search for products, manage their shopping cart, and access order history using natural language commands.Last updated1
Related MCP Connectors
Routes natural-language shopping queries to merchant storefronts, returns normalized results.
Agent-native product catalog for AI shopping agents. 296M+ products, 28 countries.
Shopping search across 100M+ products, with every retailer's offer and live price in one place.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kraenhansen/nemlig-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server