@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/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@striderlabs/mcp-buffalowildwings",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server for Buffalo Wild Wings — find locations, browse menu, order wings, track orders, manage Blazin Rewards",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"striderlabs-mcp-buffalowildwings": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --banner:js='#!/usr/bin/env node'",
|
|
12
|
+
"start": "node dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"mcp",
|
|
16
|
+
"buffalo-wild-wings",
|
|
17
|
+
"bww",
|
|
18
|
+
"wings",
|
|
19
|
+
"restaurant",
|
|
20
|
+
"food-ordering",
|
|
21
|
+
"ai-agent",
|
|
22
|
+
"strider",
|
|
23
|
+
"model-context-protocol",
|
|
24
|
+
"blazin-rewards",
|
|
25
|
+
"game-day"
|
|
26
|
+
],
|
|
27
|
+
"author": "Strider Labs <hello@striderlabs.ai>",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/striderlabs/mcp-buffalowildwings"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://striderlabs.ai",
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@modelcontextprotocol/sdk": "^1.12.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/node": "^20.11.0",
|
|
39
|
+
"esbuild": "^0.25.0",
|
|
40
|
+
"typescript": "^5.3.3"
|
|
41
|
+
},
|
|
42
|
+
"mcpName": "io.github.striderlabs/buffalowildwings"
|
|
43
|
+
}
|
package/server.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.striderlabs/buffalowildwings",
|
|
4
|
+
"description": "Buffalo Wild Wings MCP server — find locations, browse menu, order wings, track orders, manage Blazin' Rewards. By Strider Labs.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/striderlabs/mcp-buffalowildwings",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "0.1.0",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "@striderlabs/mcp-buffalowildwings",
|
|
14
|
+
"version": "0.1.0",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|