Wingstop
FreeMaintainedEnables users to interact with Wingstop by finding nearby locations, browsing the menu, and managing orders. It utilizes Playwright browser automation to facili
About
Enables users to interact with Wingstop by finding nearby locations, browsing the menu, and managing orders. It utilizes Playwright browser automation to facilitate checkout, apply promo codes, and check Wing Club rewards status.
README
An MCP (Model Context Protocol) server for Wingstop — find nearby locations, browse the wing menu with all 13 flavors, build your order, apply coupons, check out, and view Wing Club rewards using Playwright browser automation.
Features
- Find Locations — Locate nearby Wingstop restaurants with address, hours, distance, and delivery availability
- Browse Menu — Full menu by category: wings, tenders, combos, sides, drinks, and dips — with flavors and prices
- Order Management — Create orders, add items with flavor selections, remove items
- Coupons — Apply promo codes for discounts
- Checkout — Review and submit orders for pickup or delivery
- Wing Club Rewards — Check points balance, tier status, and available reward offers
Installation
npm install @striderlabs/mcp-wingstop
npx playwright install chromium
Usage
As an MCP server (Claude Desktop / Cursor / etc.)
Add to your MCP client config (e.g. ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"wingstop": {
"command": "npx",
"args": ["-y", "@striderlabs/mcp-wingstop"]
}
}
}
Run directly
npx @striderlabs/mcp-wingstop
Tools
find_locations
Find nearby Wingstop locations.
Input:
| Parameter | Type | Required | Description |
|---|---|---|---|
location |
string | Yes | Address, city, or ZIP code |
Example:
{ "location": "Dallas, TX" }
get_menu
Browse the Wingstop menu with prices and flavors.
Input:
| Parameter | Type | Required | Description |
|---|---|---|---|
category |
string | No | Filter by category: wings, tenders, combos, sides, drinks, dips |
Example:
{ "category": "wings" }
create_order
Start a new order at a selected Wingstop location.
Input:
| Parameter | Type | Required | Description |
|---|---|---|---|
locationId |
string | Yes | Location ID from find_locations |
locationName |
string | Yes | Location name/address |
orderType |
string | No | "pickup" or "delivery" (default: "pickup") |
Example:
{
"locationId": "ws_loc_001",
"locationName": "Wingstop - 123 Main St",
"orderType": "pickup"
}
add_item
Add a menu item to the current order.
Input:
| Parameter | Type | Required | Description |
|---|---|---|---|
menuItemId |
string | Yes | Item ID from get_menu |
name |
string | Yes | Display name |
price |
number | Yes | Price per item (USD) |
quantity |
number | No | Quantity (default: 1) |
flavor |
string | No | Wing flavor (e.g. "Lemon Pepper", "Mango Habanero") |
size |
string | No | Size (e.g. "6-piece", "10-piece") |
customizations |
object | No | Extra key-value customizations |
Example:
{
"menuItemId": "classic-wings-10",
"name": "10-Piece Classic Wings",
"price": 14.99,
"quantity": 1,
"flavor": "Lemon Pepper",
"size": "10-piece"
}
remove_item
Remove an item from the current order.
Input:
| Parameter | Type | Required | Description |
|---|---|---|---|
itemId |
string | Yes | Order item ID (shown in add_item response) |
apply_coupon
Apply a promo code to the current order.
Input:
| Parameter | Type | Required | Description |
|---|---|---|---|
code |
string | Yes | Coupon or promo code |
Example:
{ "code": "WINGFAN10" }
checkout
Submit the order for pickup or delivery.
Input:
| Parameter | Type | Required | Description |
|---|---|---|---|
customerName |
string | Yes | Customer name |
phone |
string | No | Phone number |
pickupTime |
string | No | Pickup time (default: "ASAP") |
deliveryAddress |
string | No | Delivery address (required for delivery) |
notes |
string | No | Special instructions |
Example:
{
"customerName": "Alex Smith",
"phone": "555-123-4567",
"pickupTime": "6:30 PM"
}
Note: Full order placement requires authentication with Wingstop. The server generates an order ID and summary — complete payment at wingstop.com or in the Wingstop app.
get_rewards
Check Wing Club rewards balance and offers.
Input:
| Parameter | Type | Required | Description |
|---|---|---|---|
includeOffers |
boolean | No | Include reward offers (default: true) |
Supported Flavors
Wingstop's 13 signature flavors:
| Flavor | Heat Level |
|---|---|
| Lemon Pepper | None |
| Garlic Parmesan | None |
| Hickory Smoked BBQ | None |
| Hawaiian | Mild |
| Mild | Mild |
| Butter Garlic | None |
| Cajun | Medium |
| Louisiana Rub | Medium |
| Cajun Garlic | Medium |
| Original Hot | Hot |
| Spicy Korean Q | Hot |
| Mango Habanero | Extra Hot |
| Atomic | Extra Hot |
Session Persistence
The server saves browser cookies to ~/.wingstop-mcp-cookies.json for persistent sessions across restarts. If you're logged in to Wingstop in the automated browser, your session will be preserved.
How It Works
The server uses Playwright to automate a headless Chromium browser with stealth settings, navigating wingstop.com to fetch live location data, menu items, and rewards information. A comprehensive static fallback dataset is used when live scraping is unavailable.
Order state is maintained in-memory for the duration of the MCP session.
Development
git clone https://github.com/markswendsen-code/mcp-wingstop
cd mcp-wingstop
npm install
npx playwright install chromium
npm run dev # watch mode
npm run build # production build
License
MIT
Install Wingstop in Claude Desktop, Claude Code & Cursor
unyly install mcp-wingstopInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add mcp-wingstop -- npx -y @striderlabs/mcp-wingstopStep-by-step: how to install Wingstop
FAQ
Is Wingstop MCP free?
Yes, Wingstop MCP is free — one-click install via Unyly at no cost.
Does Wingstop need an API key?
No, Wingstop runs without API keys or environment variables.
Is Wingstop hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Wingstop in Claude Desktop, Claude Code or Cursor?
Open Wingstop on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Changes
Versions and requested access over time.
- New version published
- New version published
Related MCPs
Playwright
Browser automation, scraping, screenshots
by MicrosoftPuppeteer
Browser automation and web scraping.
by modelcontextprotocolopentabs-dev/opentabs
Plugin-based MCP server + Chrome extension that gives AI agents access to web applications through the user's authenticated browser session. 100+ plugins with a
by opentabs-devrobhunter/agentdeals
1,500+ developer infrastructure deals, free tiers, and startup programs across 54 categories. Search deals, compare vendors, plan stacks, and track pricing chan
by robhunterhlydecker/ucsc-genome-mcp
MCP server to interact with the UCSC Genome Browser API, letting you find genomes, chromosomes, and more.
by hlydecker34892002/bilibili-mcp-js
A MCP server that supports searching for Bilibili content. Provides LangChain integration examples and test scripts.
by 34892002achiya-automation/safari-mcp
Native Safari browser automation for AI agents with 80+ tools. No Chrome dependency, optimized for Apple Silicon with 60% less CPU overhead.
by achiya-automationagent-infra/mcp-server-browser
Browser automation capabilities using Puppeteer, both support local and remote browser connection.
by bytedanceaparajithn/agent-scraper-mcp
Web scraping MCP server for AI agents. 6 tools: clean content extraction, structured scraping with CSS selectors, full-page screenshots via Playwright, link ext
by aparajithnapireno/DOMShell
Browse the web using filesystem commands (ls, cd, grep, click). 38 MCP tools map Chrome's Accessibility Tree to a virtual filesystem via a Chrome Extension.
by apirenoCompare Wingstop with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All browse MCPs
