This repository was archived by the owner on Jul 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.81 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
{
"name": "merch-connector",
"version": "2.1.0",
"description": "MCP server that gives AI agents eyes on any e-commerce storefront — scrape product listings, run 5-persona AI audits, compare storefronts, detect changes, and analyze pre-scraped data without a browser.",
"type": "module",
"bin": {
"merch-connector": "bin/merch-connector.js"
},
"files": [
"bin/",
"server/*.js",
"server/prompts/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node server/index.js",
"test": "node test/smoke.js",
"test:audit": "node test/smoke.js --audit",
"test:roundtable": "node test/smoke.js --roundtable",
"test:persona": "node test/smoke.js --persona floor_walker",
"test:acquire": "node test/smoke.js --acquire",
"prepublishOnly": "node --check server/index.js && node --check server/scraper.js && node --check server/analyzer.js && node --check server/site-memory.js && node --check server/eval-store.js && node --check server/network-intel.js"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"merchandising",
"ecommerce",
"storefront",
"scraper",
"audit",
"persona",
"conversion-optimization",
"product-analysis",
"b2b",
"puppeteer",
"claude",
"gemini",
"ollama"
],
"author": "Graham Higbee",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/grahamton/merchGent.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.54.0",
"@google/genai": "^1.35.0",
"@mendable/firecrawl-js": "^1.29.3",
"@modelcontextprotocol/sdk": "^1.12.1",
"dotenv": "^17.2.3",
"openai": "^4.104.0",
"puppeteer": "^24.34.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
}
}