# io.github.markswendsen-code/kroger (npm · @striderlabs/mcp-kroger)

MCP server for Kroger - search products, manage cart, place grocery orders

- Trust score: 69/100 (medium)
- Change this week: +23
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@striderlabs/mcp-kroger`: 69/100 (this document), [markdown](https://verifymcp.io/servers/markswendsen-code-kroger/striderlabs-mcp-kroger.md), [page](https://verifymcp.io/servers/markswendsen-code-kroger/striderlabs-mcp-kroger)

## Channel facts

- Registry: `npm`
- Package: `@striderlabs/mcp-kroger`
- Version: `0.1.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (97 of 101), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (97 of 101), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 46 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 75/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 648 tokens (~43/item across 15 items; 15 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add markswendsen-code-kroger -- npx -y @striderlabs/mcp-kroger
```

### Codex

```bash
codex mcp add markswendsen-code-kroger -- npx -y @striderlabs/mcp-kroger
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "markswendsen-code-kroger": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@striderlabs/mcp-kroger"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add markswendsen-code-kroger --command npx --arg -y --arg @striderlabs/mcp-kroger
```

### Hermes

```yaml
mcp_servers:
  markswendsen-code-kroger:
    command: "npx"
    args: ["-y", "@striderlabs/mcp-kroger"]
```

### Other

```json
{
  "mcpServers": {
    "markswendsen-code-kroger": {
      "command": "npx",
      "args": [
        "-y",
        "@striderlabs/mcp-kroger"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 69, +4)

- [functional improvement] Stability: unverified → 0.23

### 2026-08-02 (score 65, +39)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Capabilities: pass → unverified
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 26, +5)

- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass

### 2026-07-31 (score 21, −3)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-28 (score 24, −22)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (15)

### `kroger_login` (~47 tokens)

Log in to Kroger account with email and password. Required before most operations.

Input parameters:

- `email` (string, required): Kroger account email
- `password` (string, required): Kroger account password

### `kroger_set_store` (~58 tokens)

Set the preferred Kroger store location by zip code or store ID. This determines product availability and prices.

Input parameters:

- `storeId` (string): Specific store ID if known
- `zipCode` (string): Zip code to search for stores

### `kroger_search_products` (~75 tokens)

Search for products on Kroger by name, brand, or category. Returns product details with prices.

Input parameters:

- `brand` (string): Optional brand filter
- `category` (string): Optional category filter
- `onSale` (boolean): Filter to only show sale items
- `query` (string, required): Search query for products

### `kroger_get_product_details` (~39 tokens)

Get detailed information about a specific product including nutrition facts, ingredients, and availability.

Input parameters:

- `productId` (string, required): Kroger product ID

### `kroger_add_to_cart` (~46 tokens)

Add a product to the Kroger shopping cart with specified quantity.

Input parameters:

- `productId` (string, required): Kroger product ID
- `quantity` (number): Quantity to add

### `kroger_view_cart` (~24 tokens)

View current items in the Kroger shopping cart with prices and totals.

### `kroger_update_cart_item` (~49 tokens)

Update quantity of an item in the cart or remove it entirely.

Input parameters:

- `productId` (string, required): Kroger product ID
- `quantity` (number, required): New quantity (0 to remove)

### `kroger_get_coupons` (~51 tokens)

Get available digital coupons that can be clipped to the Kroger Plus card.

Input parameters:

- `category` (string): Optional category filter for coupons
- `personalizedOnly` (boolean): Only show personalized offers

### `kroger_clip_coupon` (~38 tokens)

Clip a digital coupon to the Kroger Plus card for automatic discount at checkout.

Input parameters:

- `couponId` (string, required): Coupon ID to clip

### `kroger_get_fuel_points` (~23 tokens)

Check current fuel points balance and available fuel point rewards.

### `kroger_get_delivery_slots` (~37 tokens)

Get available delivery time slots for the current cart and store.

Input parameters:

- `date` (string): Optional preferred date (YYYY-MM-DD)

### `kroger_get_pickup_slots` (~38 tokens)

Get available pickup time slots for the current cart and store.

Input parameters:

- `date` (string): Optional preferred date (YYYY-MM-DD)

### `kroger_checkout` (~60 tokens)

Proceed to checkout with the current cart. Returns order summary for confirmation.

Input parameters:

- `fulfillmentType` (string, required): Delivery or pickup
- `paymentMethod` (string): Payment method ID (saved card)
- `slotId` (string, required): Selected time slot ID

### `kroger_get_order_history` (~32 tokens)

Get recent order history from Kroger account.

Input parameters:

- `limit` (number): Number of orders to retrieve

### `kroger_reorder` (~31 tokens)

Reorder items from a previous order.

Input parameters:

- `orderId` (string, required): Previous order ID to reorder

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/markswendsen-code-kroger/striderlabs-mcp-kroger#diagnostics

## Score history

- 2026-08-03: 69
- 2026-08-02: 65
- 2026-08-01: 26
- 2026-07-31: 21
- 2026-07-30: 24
- 2026-07-28: 24
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@striderlabs/mcp-kroger
- Socket report: https://socket.dev/npm/package/@striderlabs/mcp-kroger
- Repository: https://github.com/markswendsen-code/mcp-kroger
- Changelog RSS feed: https://verifymcp.io/servers/markswendsen-code-kroger/striderlabs-mcp-kroger/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/markswendsen-code-kroger/striderlabs-mcp-kroger/changelog.json
- HTML version of this page: https://verifymcp.io/servers/markswendsen-code-kroger/striderlabs-mcp-kroger
