mcp-wingstop
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-wingstopfind a Wingstop near Dallas and show me the wing menu"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@striderlabs/mcp-wingstop
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
Related MCP server: DoorDash MCP Server
Installation
npm install @striderlabs/mcp-wingstop
npx playwright install chromiumUsage
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-wingstopTools
find_locations
Find nearby Wingstop locations.
Input:
Parameter | Type | Required | Description |
| 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 |
| string | No | Filter by category: |
Example:
{ "category": "wings" }create_order
Start a new order at a selected Wingstop location.
Input:
Parameter | Type | Required | Description |
| string | Yes | Location ID from |
| string | Yes | Location name/address |
| string | No |
|
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 |
| string | Yes | Item ID from |
| string | Yes | Display name |
| number | Yes | Price per item (USD) |
| number | No | Quantity (default: 1) |
| string | No | Wing flavor (e.g. |
| string | No | Size (e.g. |
| 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 |
| string | Yes | Order item ID (shown in |
apply_coupon
Apply a promo code to the current order.
Input:
Parameter | Type | Required | Description |
| string | Yes | Coupon or promo code |
Example:
{ "code": "WINGFAN10" }checkout
Submit the order for pickup or delivery.
Input:
Parameter | Type | Required | Description |
| string | Yes | Customer name |
| string | No | Phone number |
| string | No | Pickup time (default: |
| string | No | Delivery address (required for delivery) |
| 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 |
| boolean | No | Include reward offers (default: |
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 buildLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceEnables AI agents to search for products, manage shopping carts, and place grocery orders on Instacart using browser automation. It includes comprehensive tools for store discovery, product searching, and secure checkout with explicit user confirmation.Last updated11845MIT
- FlicenseBqualityDmaintenanceEnables AI agents to search restaurants, browse menus, and manage DoorDash carts through structured JSON data. It leverages a background browser to handle authentication and direct GraphQL API calls for efficient interaction.Last updated72
- AlicenseAqualityDmaintenanceEnables AI assistants to manage HelloFresh meal kit accounts by browsing menus, selecting recipes, and modifying delivery schedules. It supports updating dietary preferences, managing subscriptions, and rating past orders through Playwright-based browser automation.Last updated1216MIT
- AlicenseAqualityDmaintenanceEnables AI assistants to search the Burger King menu, manage a cart with item customizations, and find nearby restaurant locations. It facilitates ordering for pickup or delivery using Playwright browser automation.Last updated721MIT
Related MCP Connectors
Provides cloud browser automation capabilities using Stagehand and Browserbase, enabling LLMs to i…
AI-powered browser automation — navigate, click, fill forms, and extract data from any website.
Send quick greetings, scrape website content, and generate text or images on demand. Perform web s…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/markswendsen-code/mcp-wingstop'
If you have feedback or need assistance with the MCP directory API, please join our Discord server