npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@striderlabs/mcp-chickfila

v1.0.0

Published

MCP server connector for Chick-fil-A — search menu, nutrition, locations, orders, and rewards via browser automation

Readme

@striderlabs/mcp-chickfila

MCP (Model Context Protocol) server connector for Chick-fil-A. Enables AI agents to interact with the Chick-fil-A website via Playwright browser automation.

Features

  • Search Menu — Find menu items by name or keyword
  • Nutrition Info — Get detailed nutrition facts for any menu item
  • Find Locations — Locate nearby restaurants by ZIP code or city
  • Add to Cart — Add items to a mobile order cart (requires login)
  • Place Orders — Submit mobile orders (requires Chick-fil-A One account)
  • Order Status — Check the status of active or recent orders
  • Rewards & Points — View Chick-fil-A One points, tier, and available rewards

Installation

npm install @striderlabs/mcp-chickfila
npx playwright install chromium

Usage

As an MCP server (stdio)

npx @striderlabs/mcp-chickfila

Claude Desktop config (claude_desktop_config.json)

{
  "mcpServers": {
    "chickfila": {
      "command": "npx",
      "args": ["@striderlabs/mcp-chickfila"]
    }
  }
}

Available Tools

| Tool | Description | Auth Required | |------|-------------|---------------| | search_menu | Search menu items by keyword | No | | get_nutrition | Get nutrition facts for an item | No | | find_locations | Find nearby restaurants | No | | add_to_cart | Add items to mobile order cart | Yes | | place_order | Submit a mobile order | Yes | | check_order_status | View order status/history | Yes | | view_rewards | View points and rewards | Yes |

Tool Details

search_menu

{
  "query": "spicy chicken sandwich",
  "category": "entrees"  // optional
}

get_nutrition

{
  "item_name": "Spicy Deluxe Sandwich"
}

find_locations

{
  "zip_or_city": "30301",
  "radius_miles": 10
}

add_to_cart

{
  "item_name": "Chicken Sandwich",
  "quantity": 2,
  "customizations": "no pickles, extra sauce"
}

place_order

{
  "location_id": "03498",
  "payment_method": "saved card",
  "special_instructions": "curbside pickup, blue car"
}

check_order_status

{
  "order_id": "CFA-20241215-001"  // optional, omit for recent history
}

view_rewards

{}

Authentication

Tools that require authentication (add_to_cart, place_order, check_order_status, view_rewards) need an active Chick-fil-A One session. The browser context persists across tool calls within a session, so you can navigate to https://www.chick-fil-a.com/one/login to authenticate before using these tools.

Requirements

  • Node.js >= 18
  • Playwright with Chromium (npx playwright install chromium)

License

MIT