@striderlabs/mcp-shakeshack 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/BRIEF.md +18 -0
- package/README.md +80 -0
- package/dist/index.js +21283 -0
- package/package.json +23 -0
- package/src/index.ts +495 -0
- package/tsconfig.json +16 -0
package/BRIEF.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# mcp-shakeshack MCP Connector
|
|
2
|
+
|
|
3
|
+
Build an MCP (Model Context Protocol) connector for shakeshack.
|
|
4
|
+
|
|
5
|
+
## Requirements:
|
|
6
|
+
1. TypeScript with @modelcontextprotocol/sdk
|
|
7
|
+
2. Useful tools for this service (search, store finder, relevant actions)
|
|
8
|
+
3. package.json with @striderlabs/mcp-shakeshack namespace
|
|
9
|
+
4. README.md with installation and usage
|
|
10
|
+
5. Build to dist/index.js with esbuild
|
|
11
|
+
|
|
12
|
+
## Structure:
|
|
13
|
+
- src/index.ts - main MCP server
|
|
14
|
+
- package.json - npm package config
|
|
15
|
+
- README.md - documentation
|
|
16
|
+
- tsconfig.json - TypeScript config
|
|
17
|
+
|
|
18
|
+
Build it, test it compiles, create the npm tarball with npm pack.
|
package/README.md
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# @striderlabs/mcp-shakeshack
|
|
2
|
+
|
|
3
|
+
MCP (Model Context Protocol) connector for Shake Shack restaurant. Provides tools for browsing the menu, searching items, finding locations, and getting ordering information.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @striderlabs/mcp-shakeshack
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
Add to your MCP client configuration:
|
|
14
|
+
|
|
15
|
+
```json
|
|
16
|
+
{
|
|
17
|
+
"mcpServers": {
|
|
18
|
+
"shakeshack": {
|
|
19
|
+
"command": "npx",
|
|
20
|
+
"args": ["-y", "@striderlabs/mcp-shakeshack"]
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Available Tools
|
|
27
|
+
|
|
28
|
+
### `get_menu`
|
|
29
|
+
Get the full Shake Shack menu or filter by category.
|
|
30
|
+
|
|
31
|
+
**Parameters:**
|
|
32
|
+
- `category` *(optional)*: Filter by menu category (Burgers, Chicken, Hot Dogs, Crinkle Cut Fries, Frozen Custard, Shakes & Floats, Beer & Wine, Beverages)
|
|
33
|
+
|
|
34
|
+
### `search_menu`
|
|
35
|
+
Search menu items by keyword.
|
|
36
|
+
|
|
37
|
+
**Parameters:**
|
|
38
|
+
- `query` *(required)*: Search term (e.g. "bacon", "vegetarian", "chicken")
|
|
39
|
+
|
|
40
|
+
### `find_locations`
|
|
41
|
+
Find Shake Shack locations by city, neighborhood, or keyword.
|
|
42
|
+
|
|
43
|
+
**Parameters:**
|
|
44
|
+
- `query` *(optional)*: Location search query
|
|
45
|
+
- `limit` *(optional)*: Max results to return (default: 5)
|
|
46
|
+
|
|
47
|
+
### `get_location_details`
|
|
48
|
+
Get detailed info for a specific location by ID.
|
|
49
|
+
|
|
50
|
+
**Parameters:**
|
|
51
|
+
- `location_id` *(required)*: Location identifier (e.g. "madison-square-park")
|
|
52
|
+
|
|
53
|
+
### `get_nutrition_info`
|
|
54
|
+
Get nutritional information and allergens for a menu item.
|
|
55
|
+
|
|
56
|
+
**Parameters:**
|
|
57
|
+
- `item_name` *(required)*: Menu item name (e.g. "ShackBurger", "Fries")
|
|
58
|
+
|
|
59
|
+
### `get_featured_items`
|
|
60
|
+
Get current featured and seasonal menu items.
|
|
61
|
+
|
|
62
|
+
### `get_ordering_info`
|
|
63
|
+
Get information about ordering options (app, kiosk, delivery, catering, loyalty).
|
|
64
|
+
|
|
65
|
+
## Development
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
# Install dependencies
|
|
69
|
+
npm install
|
|
70
|
+
|
|
71
|
+
# Build
|
|
72
|
+
npm run build
|
|
73
|
+
|
|
74
|
+
# Run directly
|
|
75
|
+
node dist/index.js
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## License
|
|
79
|
+
|
|
80
|
+
MIT
|