@striderlabs/mcp-wendys 1.0.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 +57 -0
- package/dist/index.js +21377 -0
- package/package.json +37 -0
package/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# @striderlabs/mcp-wendys
|
|
2
|
+
|
|
3
|
+
MCP (Model Context Protocol) server connector for Wendy's. Enables AI agents to search the menu, view nutrition info, find locations, and place mobile orders.
|
|
4
|
+
|
|
5
|
+
## Tools
|
|
6
|
+
|
|
7
|
+
| Tool | Description |
|
|
8
|
+
|------|-------------|
|
|
9
|
+
| `search_menu_items` | Search menu by name, category, or keyword |
|
|
10
|
+
| `get_item_nutrition` | Get calorie and nutrition info for an item |
|
|
11
|
+
| `find_nearby_locations` | Find nearby Wendy's restaurants |
|
|
12
|
+
| `add_to_order` | Add items to the mobile order cart |
|
|
13
|
+
| `apply_offer` | Apply promo/deal codes to the order |
|
|
14
|
+
| `place_order` | Place the order (pickup, delivery, drive-thru) |
|
|
15
|
+
| `check_order_status` | Check the status of a placed order |
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
### With Claude Desktop
|
|
20
|
+
|
|
21
|
+
Add to your `claude_desktop_config.json`:
|
|
22
|
+
|
|
23
|
+
```json
|
|
24
|
+
{
|
|
25
|
+
"mcpServers": {
|
|
26
|
+
"wendys": {
|
|
27
|
+
"command": "npx",
|
|
28
|
+
"args": ["-y", "@striderlabs/mcp-wendys"]
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Direct execution
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
npx @striderlabs/mcp-wendys
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Example interactions
|
|
41
|
+
|
|
42
|
+
- "Search for chicken sandwiches on the Wendy's menu"
|
|
43
|
+
- "How many calories are in the Baconator?"
|
|
44
|
+
- "Find Wendy's near 90210"
|
|
45
|
+
- "Add a Dave's Double and a large Frosty to my order"
|
|
46
|
+
- "Apply promo code FROSTY1"
|
|
47
|
+
- "Place my order at location WEN001 for pickup"
|
|
48
|
+
- "Check the status of order WEN-123456-789"
|
|
49
|
+
|
|
50
|
+
## Requirements
|
|
51
|
+
|
|
52
|
+
- Node.js 18+
|
|
53
|
+
- Playwright (for browser automation)
|
|
54
|
+
|
|
55
|
+
## License
|
|
56
|
+
|
|
57
|
+
MIT
|