Skip to main content
Glama
aminm1364

mcp-de-picnic

by aminm1364

mcp-de-picnic

An MCP server that lets an LLM (Claude, etc.) search Picnic's catalog, manage your basket, and pick a delivery slot — for Picnic's grocery delivery service in Germany and the Netherlands.

⚠️ Unofficial, reverse-engineered, use at your own risk

Picnic has no official public API. This project talks to the same private HTTP endpoints the Picnic mobile app uses, reimplemented independently from scratch (see ENDPOINTS.md) using plain requests calls — no Picnic-owned code, and no third-party Picnic wrapper library, is used or depended on.

  • This project is not affiliated with, endorsed by, or supported by Picnic in any way.

  • Picnic can change or break these endpoints at any time, without notice, and this server would then stop working until someone updates it.

  • Automating your account this way may or may not be consistent with Picnic's Terms of Service. You are responsible for deciding whether to use this, and for any consequences to your account (rate limiting, suspension, etc.). Use your own judgment, especially for anything that places a real order or spends real money.

  • This server only ever talks to *.picnicinternational.com. It sends no telemetry, analytics, or data to anyone else.

Related MCP server: Rohlik MCP Server

What it does

Tool

Description

search_products(query)

Search the catalog → id, name, price, unit for each hit

get_cart()

Full basket: items with quantity/unit price/line total, plus cart total

add_to_cart(product_id, count)

Add units of a product

remove_from_cart(product_id, count)

Remove units of a product

clear_cart()

Empty the basket

get_delivery_slots()

Available slots, flagging which one Picnic suggests/defaults to

set_delivery_slot(slot_id)

Choose a delivery slot

generate_2fa_code(channel="SMS")

Request a 2FA code (accounts that require it)

verify_2fa_code(code)

Complete login with that code

This server never places an order — there is no checkout/pay tool. It stops at "cart is ready with the slot you want."

How credentials work (read this before installing)

  • Credentials are read only from the environment variables PICNIC_EMAIL, PICNIC_PASSWORD, and PICNIC_COUNTRY_CODE at process startup. They are never hardcoded, never logged, and never included in any error message.

  • The session token Picnic issues after login is kept in memory only, for the lifetime of the server process. Restarting the server means logging in again. This is deliberate — see PicnicClient in picnic_client.py.

  • If you'd rather not re-authenticate (and redo 2FA) every restart, you can opt in to a small on-disk token cache by setting PICNIC_TOKEN_CACHE_FILE to a file path. It is written with 0600 permissions and stores only the session token — never your password. This is off by default.

  • No other network calls are made by this server besides the ones to storefront-prod.{de,nl}.picnicinternational.com documented in ENDPOINTS.md.

  • The source is plain, readable Python — nothing obfuscated, nothing built. Read picnic_client.py yourself before trusting it with your account.

Install

Requires Python 3.10+.

git clone https://github.com/aminm1364/mcp-de-picnic.git
cd mcp-de-picnic
pipx install .          # or: pip install .
# or, for local development: pip install -e .

requirements.txt is also provided if you'd rather manage the venv yourself:

python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt

Configure

cp .env.example .env
# edit .env with your Picnic email, password, and country code (DE or NL)

PICNIC_COUNTRY_CODE defaults to DE if you leave it unset — set it to NL if your Picnic account is Dutch. No other country codes are valid; Picnic only operates in these two.

These variables need to be in the environment of whatever process actually launches the server (see the Claude Desktop config below, or export/source .env if running it directly).

Test it with the MCP Inspector first

Before wiring this into Claude Desktop, verify each tool works against your real account using the MCP Inspector:

# from the repo root, with your venv activated and .env filled in
set -a && source .env && set +a
npx @modelcontextprotocol/inspector python -m mcp_de_picnic

This opens a local web UI where you can call each tool by hand. A sensible order to test in:

  1. search_products with a common word (e.g. "melk" / "milch") — confirms auth + search parsing works.

  2. If any tool's result says a 2FA code is required: call generate_2fa_code, then verify_2fa_code with the code Picnic sends you, then retry.

  3. add_to_cart with a product_id from step 1, then get_cart to confirm it shows up with the right quantity/price.

  4. get_delivery_slots — check that exactly one slot comes back with "suggested": true.

  5. set_delivery_slot with a slot_id from step 4.

  6. remove_from_cart / clear_cart to clean up.

If a tool returns an error, the message is meant to be self-explanatory (bad credentials, expired session, wrong 2FA code, rate limited, etc.) — see ENDPOINTS.md for the full mapping. If you get something that looks like a raw stack trace instead, that's a bug — please file an issue.

Configure in Claude Desktop

Edit your claude_desktop_config.json (Claude menu → Settings → Developer → Edit Config), and add an entry under mcpServers:

{
  "mcpServers": {
    "de-picnic": {
      "command": "python",
      "args": ["-m", "mcp_de_picnic"],
      "env": {
        "PICNIC_EMAIL": "you@example.com",
        "PICNIC_PASSWORD": "your-picnic-password",
        "PICNIC_COUNTRY_CODE": "DE"
      }
    }
  }
}

If you installed with pipx install ., you can use the console script instead and drop the -m args:

{
  "mcpServers": {
    "de-picnic": {
      "command": "mcp-de-picnic",
      "env": {
        "PICNIC_EMAIL": "you@example.com",
        "PICNIC_PASSWORD": "your-picnic-password",
        "PICNIC_COUNTRY_CODE": "DE"
      }
    }
  }
}

Restart Claude Desktop after editing the config. Your credentials live in this JSON file on your own machine — they are not sent anywhere by this project except to Picnic itself during login.

2FA accounts

Some Picnic accounts require a one-time code on login. If a tool call fails with a message about 2FA being required:

  1. Ask Claude to call generate_2fa_code (defaults to SMS; pass channel="EMAIL" if you'd rather get it by email).

  2. Check your phone/email for the code.

  3. Ask Claude to call verify_2fa_code with that code.

  4. Retry whatever you were doing.

Project layout

src/mcp_de_picnic/
  picnic_client.py   # raw HTTP client for Picnic — the only file that talks to Picnic
  errors.py          # typed exceptions, all with credential-free messages
  server.py          # MCP tool definitions, thin wrappers around PicnicClient
ENDPOINTS.md         # every Picnic endpoint used: path, method, payload, and sources

Contributing / when Picnic changes something

If a tool starts failing, the fastest way to fix it is usually to update ENDPOINTS.md and the matching bit of picnic_client.py — it's a small, single-purpose file with no hidden layers. PRs welcome.

License

MIT — see LICENSE.

Available Tools

9 tools
add_to_cartA

Add count units of a product to the cart (product_id from search_products).

Returns the updated cart, same shape as get_cart().

ParametersJSON Schema
NameRequiredDescriptionDefault
countNo
product_idYes

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the behavioral burden. It discloses the return behavior ('Returns the updated cart, same shape as get_cart()'), which is useful. It does not mention error handling, persistence side effects, or quantity constraints, but for a simple cart mutation the disclosed behavior is reasonably transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no filler. The main action and parameter guidance come first, and the return-shape note follows efficiently.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a two-parameter tool with no output schema and no annotations, the description covers the key inputs, the source of product_id, and the return shape via the get_cart reference. It does not discuss edge cases, but the information needed for normal invocation is largely present.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must clarify parameters. It explains that product_id comes from search_products and that count represents units of the product. This adds meaning beyond the bare schema types and names.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear action: 'Add `count` units of a product to the cart', which is a specific verb and resource. It also references product_id from search_products, distinguishing this addition tool from siblings like remove_from_cart and clear_cart.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool should be used after search_products by stating 'product_id from search_products', and the return-shape note connects it to get_cart. However, it does not explicitly explain when to use this tool versus alternatives such as remove_from_cart, clear_cart, or get_cart.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

clear_cartA

Empty the Picnic cart entirely. Returns the now-empty cart.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full disclosure burden. It clearly states the destructive effect (emptying the cart entirely) and the resulting state (returns the now-empty cart). This is sufficient for a simple zero-parameter mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, focused sentence that front-loads the action and result with no filler. Every word contributes to understanding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter, no-annotation tool with no output schema, the description fully covers what the tool does and what it returns. There are no missing details that an agent would need to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so baseline is 4. The description does not need to explain parameter meaning, and it adds useful context about the command's effect.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Empty') with a clear resource ('the Picnic cart') and specifies the scope ('entirely'), which distinguishes it from sibling tools like remove_from_cart that remove individual items. It also states the return value, making the tool's purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly implies when to use the tool: when the entire cart needs to be emptied. It does not explicitly name alternatives such as remove_from_cart or state when not to use it, but the word 'entirely' provides enough context for correct selection among cart-related siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

generate_2fa_codeA

Ask Picnic to send a 2FA code, for accounts that require it.

channel is "SMS" or "EMAIL". Call this first if any other tool fails with a message about 2FA being required, then call verify_2fa_code with the code you receive.

ParametersJSON Schema
NameRequiredDescriptionDefault
channelNoSMS

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of explaining the side effect: it sends a 2FA code via SMS or EMAIL. It also explains the account-requirement and the failure-driven use context. It does not mention rate limits, cooldowns, or that the code is delivered out-of-band, but the intended behavior is still clear.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences, each essential: the main purpose, the channel values, and the required workflow with the next tool. It is front-loaded with the action and is appropriately sized for a one-parameter tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one optional parameter and an output schema, the description covers the triggering condition, the parameter values, and the follow-up step. Nothing critical is missing for an agent to select and invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, so the description must compensate. It states that channel is 'SMS' or 'EMAIL', which gives the allowed values that the schema omits. It could note the default 'SMS' or explain the meaning of each channel, but the core parameter semantics are provided.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb and resource: 'Ask Picnic to send a 2FA code' for accounts that require it. It clearly differentiates from the sibling verify_2fa_code by focusing on sending/generating rather than verifying.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives an explicit trigger: 'Call this first if any other tool fails with a message about 2FA being required.' It also names the follow-up tool, verify_2fa_code, so the agent knows exactly when and in what sequence to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_cartA

Get the full Picnic basket.

Returns items (each with product_id, name, unit, quantity, unit_price, line_total), plus total_count and cart_total for the whole basket.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the behavioral disclosure burden. It clearly states the return payload and that the entire basket is returned, but it does not explicitly confirm that the operation has no side effects. The word 'Get' strongly implies read-only behavior, but this is not spelled out.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no filler. The core purpose is front-loaded, and the return fields are listed compactly in a structured way.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter read tool with no output schema, the description sufficiently covers what the tool does and what it returns. It does not mention edge cases like an empty cart or pricing currency, but those are minor given the simplicity of the tool and the clear sibling context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters and the schema already provides full coverage of that fact. The description adds no parameter details because none are needed, matching the baseline for a no-parameter tool.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb and resource ('Get the full Picnic basket') and details the returned fields, making it instantly clear this is a read operation for the entire cart. It is distinct from sibling cart mutation tools such as add_to_cart, remove_from_cart, and clear_cart.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this tool is used to view the complete cart, but it does not explicitly state when to choose it over alternatives or when not to use it. There are no exclusions or conditions, so the guidance is adequate but not explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_delivery_slotsA

List available delivery slots for the current cart.

Each slot includes slot_id, window_start, window_end, cut_off_time, is_available, minimum_order_value, and suggested (true for the slot Picnic has pre-selected as its default).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

There are no annotations, so the description carries the behavioral transparency burden. It clearly indicates a read-only listing operation and details the fields returned, including the meaningful `suggested` flag. However, it does not disclose edge cases such as behavior with an empty or missing cart, or confirm that no state changes occur.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with the core action and scope, then efficiently lists the returned fields in a readable format. There is no filler or redundant wording.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has no parameters and an output schema exists, the description provides sufficient context for correct invocation: it identifies the scope ('current cart'), the action (list slots), and the key fields, including the `suggested` default flag. Minor additional context about empty-cart behavior or required cart state could improve completeness, but it is not a significant gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so parameter-level explanation is unnecessary. The description references the implicit 'current cart' context, which is the only relevant input, and that is handled clearly. Baseline 4 is appropriate for a no-parameter tool.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('List') and a clear resource ('available delivery slots for the current cart'), making the tool's purpose immediately obvious. It also naturally differentiates from the sibling set_delivery_slot, since this tool is about reading slots, not modifying them.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool — when you need to see available slots for the current cart — but it does not explicitly state when not to use it or name alternatives like set_delivery_slot. This leaves usage guidance somewhat implied rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remove_from_cartA

Remove count units of a product from the cart (product_id from get_cart/search_products).

Returns the updated cart, same shape as get_cart().

ParametersJSON Schema
NameRequiredDescriptionDefault
countNo
product_idYes

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It does disclose the mutation (removing units) and the return behavior (updated cart shaped like get_cart()). However, it does not mention edge cases such as what happens when count exceeds the cart quantity or when the product is absent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is brief, front-loaded with the primary action, and the second sentence adds useful return-shape information without fluff. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter cart operation, the description provides the essential context: what to remove, where product_id comes from, and the return shape. It lacks edge-case/error details, but the tool is low-complexity and siblings provide surrounding context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must add meaning to both parameters. It does clarify that count represents units to remove and that product_id comes from get_cart/search_products, adding value beyond the schema's type/default information. It could also specify that count should be a positive integer.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('Remove count units of a product from the cart') and identifies the resource. It also tells the agent where to obtain a valid product_id, which separates it from sibling tools like add_to_cart and clear_cart.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context for use by pointing to get_cart/search_products as the source for product_id and explaining the return shape. It does not explicitly mention when not to use it or compare it against clear_cart/add_to_cart, but the intended usage is evident.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_productsA

Search Picnic's product catalog.

Returns a list of matches, each with: id, name, price (float, EUR), currency, unit.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It transparently describes the return structure, including id, name, price as a float in EUR, currency, and unit. It omits pagination or edge-case behavior, but for a simple search tool this is adequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no wasted words. It front-loads the action and resource, then immediately states the return format. This is exemplary conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter search tool with an output schema, the description provides everything necessary: what is searched, what is returned, and the type/currency of the price field. There are no notable gaps that would cause incorrect invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description is needed to explain the query parameter. The phrase 'Search Picnic's product catalog' clearly indicates that the query is the product search term, and the single parameter is self-explanatory; no further detail is essential.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'Search' with a clear resource, 'Picnic's product catalog', and goes on to specify the return fields. This makes it unmistakably distinct from the sibling tools, which all concern cart, delivery, or 2FA operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly implies this tool is for finding products in the catalog, and no sibling tool overlaps with that function. It does not explicitly state when not to use it, but the context is sufficient given the unrelated sibling set.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

set_delivery_slotA

Select a delivery slot by its slot_id (see get_delivery_slots).

ParametersJSON Schema
NameRequiredDescriptionDefault
slot_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only says 'Select a delivery slot' and does not state whether this mutates the current order/cart, replaces an existing slot selection, requires authentication/2FA, or has other side effects. This is a meaningful gap for a setter tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no filler: it states the action, the input, and the relevant sibling reference. It is front-loaded and appropriately sized for a one-parameter tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With one parameter and an output schema present, the description does not need to explain return values. But as a mutation tool with no annotations, it lacks context about side effects and what the selected slot applies to (e.g., current cart/order), leaving the agent to infer the workflow from siblings.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema coverage, the description must compensate, and it does identify slot_id as the delivery-slot identifier and directs the agent to get_delivery_slots for valid values. However, it offers no format, constraints, or behavior if the slot is invalid or expired, so it only partially compensates for the schema's lack of documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Select') and resource ('delivery slot'), and identifies the exact input needed (slot_id). It also points to the sibling get_delivery_slots, distinguishing this mutation/set operation from its lookup counterpart.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The parenthetical 'see get_delivery_slots' explicitly directs the agent to the sibling tool that supplies the slot_id, providing clear prerequisite context. It does not enumerate when-not-to-use cases, but no other sibling directly competes with this setter, so the guidance is adequate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

verify_2fa_codeA

Complete login by verifying the 2FA code requested via generate_2fa_code.

ParametersJSON Schema
NameRequiredDescriptionDefault
codeYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the operation and prerequisite but does not describe what happens on success or failure, whether the code is single-use or expires, or what side effects completing login has. This leaves important behavioral traits undisclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no filler. It front-loads the main action and immediately supplies the relevant context about where the code comes from. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter tool with an output schema, the description is nearly complete: it states the purpose, the prerequisite, and where the parameter value comes from. It does not explain failure behavior or edge cases, but an agent can select and invoke the tool correctly with the given context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 0% description coverage, so the description must compensate. It does identify 'code' as the 2FA code generated by generate_2fa_code, which is helpful, but it gives no information about expected format, length, or how errors occur. The schema itself only provides the parameter name and type.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names the specific operation ('verifying the 2FA code') and the resource ('2FA code'), and ties it to the related generate_2fa_code tool. It clearly distinguishes itself from siblings like generate_2fa_code because this verifies rather than generates.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description conveys the intended flow: the code must have been requested via generate_2fa_code, and this call completes login. It does not explicitly state when not to use it or name alternatives, but the prerequisite relationship is clear enough for an agent to sequence calls.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 9 tool updatesv0.1.0
    • First observedadd_to_cart
    • First observedclear_cart
    • First observedgenerate_2fa_code
    • First observedget_cart
    • First observedget_delivery_slots
    • First observedremove_from_cart
    • First observedsearch_products
    • First observedset_delivery_slot
    • First observedverify_2fa_code

TDQS

A4.1/5.0
Disambiguation5/5

Each tool targets a distinct action or resource: 2FA verification, product search, cart management, and delivery slot selection. Even the two 2FA tools are clearly sequential rather than overlapping.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern: search_products, get_cart, add_to_cart, clear_cart, get_delivery_slots, set_delivery_slot. There are no mixed naming conventions or vague verbs.

Tool Count5/5

Nine tools is well-scoped for the apparent shopping workflow: 2 for authentication, 1 for product search, 4 for cart operations, and 2 for delivery slots. No tool feels redundant or missing from the core set.

Completeness3/5

The surface covers authentication, product discovery, cart lifecycle, and delivery slot selection, but lacks checkout or order placement, leaving a notable gap at the end of the shopping flow. An agent can build a cart and pick a slot but cannot actually complete a purchase.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    Enables 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.
    188
    97
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to interact with Rohlik Group's online grocery delivery services across multiple European countries, supporting product search, shopping cart management, order history analysis, and personalized meal suggestions based on purchase patterns.
    56
    3
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI assistants to interact with Rohlik Group's online grocery delivery services across multiple countries, including product search, cart management, and account info.
    56
    119
    MIT

Latest Blog Posts

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/aminm1364/mcp-de-picnic'

If you have feedback or need assistance with the MCP directory API, please join our Discord server