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

MCP server for Chipotle - let AI agents order burritos, bowls, and more

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

## Channel facts

- Registry: `npm`
- Package: `@striderlabs/mcp-chipotle`
- 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 798 tokens (~57/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-chipotle -- npx -y @striderlabs/mcp-chipotle
```

### Codex

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

### opencode

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

### OpenClaw

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

### Hermes

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

### Other

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

## 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-02 (score 69, +43)

- [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] Capabilities: pass → unverified
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Schema quality: unverified → excellent
- [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, +15)

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

### 2026-07-30 (score 6, −40)

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

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

First indexed and scored.

## MCP tools (14)

### `chipotle_status` (~31 tokens)

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

### `chipotle_login` (~52 tokens)

Authenticate with your Chipotle account using email and password. Required to access rewards and saved payment methods.

Input parameters:

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

### `chipotle_logout` (~27 tokens)

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

### `chipotle_search_locations` (~82 tokens)

Find Chipotle restaurants 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, San Francisco CA')
- `radius` (number): Search radius in miles (default: 10)

### `chipotle_get_location` (~40 tokens)

Get detailed information about a specific Chipotle location by its ID.

Input parameters:

- `locationId` (string, required): The location ID from chipotle_search_locations results

### `chipotle_get_menu` (~55 tokens)

Get the full Chipotle menu including entrees, proteins, salsas, toppings, sides, and drinks with prices and calories.

Input parameters:

- `locationId` (string): Optional location ID to get menu for a specific restaurant

### `chipotle_get_favorites` (~26 tokens)

Get saved favorite orders from your Chipotle account. Requires being logged in.

### `chipotle_start_order` (~78 tokens)

Start building a new Chipotle order by selecting the entree type (bowl, burrito, tacos, salad, or quesadilla). Must call chipotle_customize_item next to add ingredients.

Input parameters:

- `entreeType` (string, required): Type of entree to build
- `locationId` (string): Optional location ID if you've already chosen a restaurant

### `chipotle_customize_item` (~152 tokens)

Customize the current order item by adding protein, rice, beans, salsas, and toppings. Call after chipotle_start_order.

Input parameters:

- `beans` (string): Beans choice
- `extras` (array): Any extra notes or additions (e.g. ['extra protein', 'light rice'])
- `protein` (string): Protein choice
- `rice` (string): Rice choice
- `toppings` (array): List of toppings/salsas to add (e.g. ['guac', 'salsa-mild', 'cheese', 'sour-cream', 'lettuce', 'salsa-hot', 'salsa-green', 'salsa-medium', 'fajita-veggies'])

### `chipotle_add_to_bag` (~51 tokens)

Add the currently configured item to your bag. Call after chipotle_start_order and chipotle_customize_item.

Input parameters:

- `quantity` (number): Number of this item to add (default: 1)

### `chipotle_view_bag` (~24 tokens)

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

### `chipotle_checkout` (~106 tokens)

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

Input parameters:

- `confirm` (boolean): Set true to place the order, false to preview only (default: false)
- `deliveryAddress` (string): Delivery address (required if fulfillment is 'delivery')
- `fulfillment` (string, required): Order fulfillment method
- `pickupTime` (string): Desired pickup time (e.g., 'ASAP', '6:30 PM')

### `chipotle_track_order` (~48 tokens)

Track the status of a Chipotle order. Shows order status and estimated pickup time.

Input parameters:

- `orderId` (string): Order ID to track. If omitted, shows the most recent order.

### `chipotle_get_rewards` (~26 tokens)

Get your Chipotle Rewards points balance and available rewards. Requires being logged in.

## Diagnostics

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

## Score history

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

## Links

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