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

MCP server for Panera Bread - browse menu, customize orders, place pickup

- 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-panera`: 69/100 (this document), [markdown](https://verifymcp.io/servers/markswendsen-code-panera/striderlabs-mcp-panera.md), [page](https://verifymcp.io/servers/markswendsen-code-panera/striderlabs-mcp-panera)

## Channel facts

- Registry: `npm`
- Package: `@striderlabs/mcp-panera`
- 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**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 874 tokens (~62/item across 14 items; 14 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-panera -- npx -y @striderlabs/mcp-panera
```

### Codex

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

### opencode

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

### OpenClaw

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

### Hermes

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

### Other

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

## 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, +3)

- [functional improvement] Stability: unverified → 0.23

### 2026-08-02 (score 66, +61)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 5, −16)

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

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

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

### 2026-07-30 (score 28, −18)

- [security regression] Malware scan: pass → unverified

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

First indexed and scored.

## MCP tools (14)

### `panera_status` (~32 tokens)

Check connection status and whether you are logged in to Panera Bread. Call this first to verify authentication before ordering.

### `panera_login` (~54 tokens)

Authenticate with your MyPanera account using email and password. Required to access rewards and order history.

Input parameters:

- `email` (string, required): MyPanera account email address
- `password` (string, required): MyPanera account password

### `panera_logout` (~28 tokens)

Log out of Panera Bread by clearing stored session cookies. Use this to reset authentication state.

### `panera_get_menu` (~98 tokens)

Get the full Panera Bread menu including sandwiches, soups, salads, bowls, bakery items, breakfast, and drinks with prices and calories.

Input parameters:

- `cafeId` (string): Optional cafe ID to get the menu for a specific location
- `category` (string): Optional category filter (e.g., 'Soups', 'Salads', 'Sandwiches', 'Bakery', 'Drinks', 'Breakfast', 'Bowls')

### `panera_search_menu` (~77 tokens)

Search Panera Bread menu items by name, ingredient, or dietary preference (e.g., 'vegetarian', 'chicken', 'soup', 'avocado').

Input parameters:

- `query` (string, required): Search query — item name, ingredient, or tag (e.g., 'broccoli cheddar', 'vegetarian', 'bagel')

### `panera_get_item_details` (~56 tokens)

Get detailed information about a specific Panera menu item including description, price, calories, allergens, and customization options.

Input parameters:

- `itemId` (string, required): Menu item ID from panera_get_menu or panera_search_menu results

### `panera_customize_item` (~100 tokens)

Configure a Panera menu item with customizations before adding to cart. Call panera_add_to_cart after customizing.

Input parameters:

- `customizations` (array): List of customizations (e.g. ['toasted', 'extra cheese', 'no tomato', 'dressing on the side', 'bread bowl'])
- `itemId` (string, required): Menu item ID to customize
- `quantity` (number): Number of this item (default: 1)

### `panera_add_to_cart` (~59 tokens)

Add the currently configured item to your cart. Call after panera_customize_item. Optionally override quantity.

Input parameters:

- `quantity` (number): Number of this item to add (default: uses quantity from panera_customize_item, or 1)

### `panera_view_cart` (~23 tokens)

View all items currently in your cart with customizations and pricing.

### `panera_remove_from_cart` (~51 tokens)

Remove a specific item from your cart by its cart item ID. Use panera_view_cart to get item IDs.

Input parameters:

- `itemId` (string, required): Cart item ID from panera_view_cart results

### `panera_checkout` (~128 tokens)

Checkout and place your Panera Bread order. Set confirm=false to preview the order first, confirm=true to actually place it.

Input parameters:

- `cafeId` (string): Cafe ID for the pickup or delivery location
- `confirm` (boolean): Set true to place the order, false to preview only (default: false)
- `deliveryAddress` (string): Delivery address (required if orderType is 'delivery')
- `orderType` (string, required): How the order will be fulfilled
- `pickupTime` (string): Desired pickup time (e.g., 'ASAP', '12:30 PM')

### `panera_get_nearby_locations` (~86 tokens)

Find Panera Bread cafes near a given address or zip code. Returns a list of nearby locations with address and hours.

Input parameters:

- `address` (string, required): Address, city, or zip code to search near (e.g., '94105', '123 Main St, Boston MA')
- `radius` (number): Number of results to return (default: 10)

### `panera_get_rewards_status` (~32 tokens)

Get your MyPanera rewards points balance, reward tier, and available rewards. Requires being logged in.

### `panera_view_orders` (~50 tokens)

Get your past Panera Bread order history with items, dates, and totals. Requires being logged in.

Input parameters:

- `limit` (number): Maximum number of past orders to return (default: 10)

## Diagnostics

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

## Score history

- 2026-08-03: 69
- 2026-08-02: 66
- 2026-08-01: 5
- 2026-07-31: 21
- 2026-07-30: 28
- 2026-07-28: 46
- 2026-07-27: 46

## Links

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