-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.95 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "paypay-mcp",
"version": "0.2.0",
"mcpName": "io.github.mrslbt/paypay-mcp",
"description": "MCP server for PayPay (Japan's largest QR wallet). Bilingual (JP/EN) tools for creating QR codes, accepting payments, refunds, and cancellations via the PayPay Open Payment API.",
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"modelcontextprotocol",
"paypay",
"paypay-opa",
"payment",
"payments",
"qr-code",
"japan",
"japanese",
"claude",
"claude-desktop",
"claude-code",
"cursor",
"windsurf",
"anthropic",
"llm",
"ai-agent",
"agentic-commerce",
"opa"
],
"author": {
"name": "Marsel Bait",
"url": "https://marselbait.me"
},
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"bin": {
"paypay-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch --env-file-if-exists=.env src/index.ts",
"start": "node --env-file-if-exists=.env dist/index.js",
"start:http": "MCP_TRANSPORT=http node --env-file-if-exists=.env dist/index.js",
"smoke": "node --env-file-if-exists=.env tests/smoke.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "npm run build && node --env-file-if-exists=.env tests/mcp_e2e.mjs",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"qrcode": "^1.5.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/qrcode": "^1.5.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrslbt/paypay-mcp.git"
},
"homepage": "https://github.com/mrslbt/paypay-mcp#readme",
"bugs": {
"url": "https://github.com/mrslbt/paypay-mcp/issues"
}
}