-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@striderlabs/mcp-starbucks",
"version": "0.1.0",
"description": "MCP server for Starbucks — let AI agents search the menu, customize drinks, find stores, and place mobile orders",
"main": "dist/index.js",
"bin": {
"striderlabs-mcp-starbucks": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"mcp",
"starbucks",
"coffee",
"food-ordering",
"mobile-order",
"ai-agent",
"strider",
"model-context-protocol",
"browser-automation",
"playwright",
"starbucks-rewards"
],
"author": "Strider Labs <hello@striderlabs.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/markswendsen-code/mcp-starbucks"
},
"homepage": "https://striderlabs.ai",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"playwright": "^1.41.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.3"
},
"mcpName": "io.github.markswendsen-code/starbucks"
}