@striderlabs/mcp-buffalowildwings 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +125 -0
- package/dist/index.js +31143 -0
- package/package.json +43 -0
- package/server.json +20 -0
- package/src/index.ts +798 -0
- package/src/locations.ts +164 -0
- package/src/menu.ts +209 -0
- package/src/session.ts +84 -0
- package/tsconfig.json +14 -0
package/README.md
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
# @striderlabs/mcp-buffalowildwings
|
|
2
|
+
|
|
3
|
+
Buffalo Wild Wings MCP server — let AI agents find locations, browse the menu, order wings, manage your Blazin' Rewards, and more.
|
|
4
|
+
|
|
5
|
+
Built by [Strider Labs](https://striderlabs.ai).
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
- **Find Locations** — Search restaurants by city, zip, or address
|
|
12
|
+
- **Browse Menu** — Full menu with wing flavors, sauces, and heat levels
|
|
13
|
+
- **Order Wings** — Pickup or delivery with full cart management
|
|
14
|
+
- **Blazin' Rewards** — Link account, check points, view perks
|
|
15
|
+
- **Order Tracking** — Check order status after checkout
|
|
16
|
+
- **Table Reservations** — Reserve a table at participating locations
|
|
17
|
+
- **Game Day Specials** — Daily deals, happy hour, wing Tuesday, NFL Sunday packages
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## MCP Config
|
|
22
|
+
|
|
23
|
+
Add to your Claude Desktop or MCP client config:
|
|
24
|
+
|
|
25
|
+
```json
|
|
26
|
+
{
|
|
27
|
+
"mcpServers": {
|
|
28
|
+
"buffalowildwings": {
|
|
29
|
+
"command": "npx",
|
|
30
|
+
"args": ["-y", "@striderlabs/mcp-buffalowildwings"]
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Or if installed globally:
|
|
37
|
+
|
|
38
|
+
```json
|
|
39
|
+
{
|
|
40
|
+
"mcpServers": {
|
|
41
|
+
"buffalowildwings": {
|
|
42
|
+
"command": "striderlabs-mcp-buffalowildwings"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## Tools
|
|
51
|
+
|
|
52
|
+
| Tool | Description |
|
|
53
|
+
|------|-------------|
|
|
54
|
+
| `bww_find_locations` | Search for BWW locations by city, zip, or address |
|
|
55
|
+
| `bww_set_location` | Select a restaurant and order type (pickup/delivery) |
|
|
56
|
+
| `bww_view_menu` | Browse menu by category or search; view wing flavors |
|
|
57
|
+
| `bww_add_to_cart` | Add items to your order with sauce selection |
|
|
58
|
+
| `bww_view_cart` | Review cart contents and order totals |
|
|
59
|
+
| `bww_remove_from_cart` | Remove or reduce items in cart |
|
|
60
|
+
| `bww_checkout` | Place your order with payment and tip |
|
|
61
|
+
| `bww_track_order` | Check status of a placed order |
|
|
62
|
+
| `bww_blazin_rewards` | Manage Blazin' Rewards account and points |
|
|
63
|
+
| `bww_reserve_table` | Reserve a table at participating locations |
|
|
64
|
+
| `bww_game_day_specials` | View daily specials, happy hour, and game day deals |
|
|
65
|
+
| `bww_session` | View or reset current session state |
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## Example Usage
|
|
70
|
+
|
|
71
|
+
### Order Wings for Pickup
|
|
72
|
+
|
|
73
|
+
```
|
|
74
|
+
1. bww_find_locations(query: "Chicago")
|
|
75
|
+
2. bww_set_location(location_id: "bww-chicago-001", order_type: "pickup")
|
|
76
|
+
3. bww_view_menu(show_flavors: true)
|
|
77
|
+
4. bww_add_to_cart(item_id: "traditional-wings-12", quantity: 1, sauce: "Mango Habanero")
|
|
78
|
+
5. bww_add_to_cart(item_id: "loaded-tater-tots", quantity: 1)
|
|
79
|
+
6. bww_view_cart()
|
|
80
|
+
7. bww_checkout(name: "Alex", phone: "555-0100", payment_method: "credit_card", card_last4: "4242", confirm: true)
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
### Game Day Planning
|
|
84
|
+
|
|
85
|
+
```
|
|
86
|
+
1. bww_game_day_specials(day: "sunday")
|
|
87
|
+
2. bww_find_locations(query: "Houston")
|
|
88
|
+
3. bww_reserve_table(location_id: "bww-houston-001", date: "2026-03-15", time: "6:00 PM", party_size: 6, name: "Jordan", phone: "555-0200")
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### Blazin' Rewards
|
|
92
|
+
|
|
93
|
+
```
|
|
94
|
+
1. bww_blazin_rewards(action: "link", phone: "555-0100")
|
|
95
|
+
2. bww_blazin_rewards(action: "view_perks")
|
|
96
|
+
3. bww_checkout(..., apply_rewards: true, confirm: true)
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
## Session Persistence
|
|
102
|
+
|
|
103
|
+
Session data (selected location, cart, rewards account) is persisted to `~/.strider/buffalowildwings/session.json` between runs. Use `bww_session(action: "reset")` to clear all session data.
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
## Development
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
npm install
|
|
111
|
+
npm run build # bundles with esbuild to dist/index.js
|
|
112
|
+
npm start # run the server
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
---
|
|
116
|
+
|
|
117
|
+
## Notes
|
|
118
|
+
|
|
119
|
+
This connector uses a simulated restaurant backend for demonstration and agent development purposes. For production use, integration with the official Buffalo Wild Wings API or ordering platform would be required.
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
## License
|
|
124
|
+
|
|
125
|
+
MIT — Strider Labs
|