-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.78 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@nicktcode/swissgroceries-mcp",
"version": "0.9.0",
"description": "MCP server for Swiss grocery stores (Migros, Coop, Aldi, Denner, Lidl, Farmy, Volgshop, Otto's). Cross-chain product search, promotions, and shopping-plan optimisation. Works with any MCP-compatible client (Claude Desktop, Claude Code, Cursor, Cline, Continue, VS Code).",
"type": "module",
"license": "AGPL-3.0-only",
"author": "Nick T",
"repository": {
"type": "git",
"url": "git+https://github.com/nicktcode/swissgroceries-mcp.git"
},
"homepage": "https://github.com/nicktcode/swissgroceries-mcp#readme",
"bugs": {
"url": "https://github.com/nicktcode/swissgroceries-mcp/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"anthropic",
"swiss",
"grocery",
"migros",
"coop",
"aldi",
"denner",
"lidl",
"shopping",
"switzerland"
],
"main": "dist/index.js",
"bin": {
"swissgroceries-mcp": "dist/index.js"
},
"files": [
"dist/**/*",
"src/data/swiss-zips.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"test": "vitest --run",
"test:watch": "vitest",
"smoke": "RUN_LIVE=1 vitest --run tests/smoke",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build && npm test",
"bundle:mcpb": "tsx scripts/build-mcpb.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"migros-api-wrapper": "^1.1.37",
"zod": "^3.24.4",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.0.0",
"typescript": "^5.8.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"mcpName": "io.github.nicktcode/swissgroceries-mcp"
}