-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 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
{
"name": "@merchantguard/mcp-server",
"version": "1.0.0",
"description": "MerchantGuard MCP Server — AI-native fraud scoring and risk intelligence for agentic commerce",
"main": "dist/server-http.js",
"types": "dist/server-http.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/server-http.js",
"start:stdio": "node dist/server-stdio.js",
"dev": "tsx src/server-http.ts",
"dev:stdio": "tsx src/server-stdio.ts",
"test": "jest",
"lint": "eslint src/"
},
"keywords": [
"merchantguard",
"mcp",
"model-context-protocol",
"fraud-detection",
"guardscore",
"agentic-commerce",
"risk-scoring",
"chargeback-prevention",
"vamp",
"payment-security",
"ai-agents",
"privacy-preserving",
"zero-knowledge",
"agent-verification",
"oprf",
"soulbound"
],
"author": "MerchantGuard <ops@merchantguard.ai>",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"express": "^4.21.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^22.13.5",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MerchantGuardOps/merchantguard-mcp"
}
}