paybot-mcp 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +189 -189
- package/README.md +193 -109
- package/dist/server.d.ts +9 -3
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +391 -12
- package/dist/server.js.map +1 -1
- package/package.json +93 -86
package/package.json
CHANGED
|
@@ -1,86 +1,93 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "paybot-mcp",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "PayBot MCP Server - Payment tools for AI agents via Model Context Protocol",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"bin": {
|
|
9
|
-
"paybot-mcp": "./dist/index.js"
|
|
10
|
-
},
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"import": "./dist/index.js",
|
|
14
|
-
"types": "./dist/index.d.ts"
|
|
15
|
-
},
|
|
16
|
-
"./server": {
|
|
17
|
-
"import": "./dist/server.js",
|
|
18
|
-
"types": "./dist/server.d.ts"
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
"files": [
|
|
22
|
-
"dist/",
|
|
23
|
-
"README.md",
|
|
24
|
-
"LICENSE"
|
|
25
|
-
],
|
|
26
|
-
"publishConfig": {
|
|
27
|
-
"access": "public"
|
|
28
|
-
},
|
|
29
|
-
"scripts": {
|
|
30
|
-
"build": "tsc",
|
|
31
|
-
"dev": "tsx watch src/index.ts",
|
|
32
|
-
"start": "node dist/index.js",
|
|
33
|
-
"test": "vitest run",
|
|
34
|
-
"test:watch": "vitest",
|
|
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
|
-
"eslint": "^
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "paybot-mcp",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "PayBot MCP Server - Payment tools for AI agents via Model Context Protocol",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"paybot-mcp": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
|
+
"types": "./dist/index.d.ts"
|
|
15
|
+
},
|
|
16
|
+
"./server": {
|
|
17
|
+
"import": "./dist/server.js",
|
|
18
|
+
"types": "./dist/server.d.ts"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist/",
|
|
23
|
+
"README.md",
|
|
24
|
+
"LICENSE"
|
|
25
|
+
],
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "tsc",
|
|
31
|
+
"dev": "tsx watch src/index.ts",
|
|
32
|
+
"start": "node dist/index.js",
|
|
33
|
+
"test": "vitest run",
|
|
34
|
+
"test:watch": "vitest",
|
|
35
|
+
"coverage": "vitest run --coverage",
|
|
36
|
+
"lint": "eslint src tests --ext .ts",
|
|
37
|
+
"format": "prettier --write src",
|
|
38
|
+
"type-check": "tsc --noEmit",
|
|
39
|
+
"prepublishOnly": "npm run build"
|
|
40
|
+
},
|
|
41
|
+
"keywords": [
|
|
42
|
+
"paybot",
|
|
43
|
+
"mcp",
|
|
44
|
+
"model-context-protocol",
|
|
45
|
+
"ai-agent",
|
|
46
|
+
"payments",
|
|
47
|
+
"usdc",
|
|
48
|
+
"x402",
|
|
49
|
+
"bot-payments"
|
|
50
|
+
],
|
|
51
|
+
"author": "RBKunnela",
|
|
52
|
+
"license": "Apache-2.0",
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "https://github.com/RBKunnela/paybot-mcp.git"
|
|
56
|
+
},
|
|
57
|
+
"mcpName": "io.github.RBKunnela/paybot-mcp",
|
|
58
|
+
"homepage": "https://paybotcore.com",
|
|
59
|
+
"bugs": {
|
|
60
|
+
"url": "https://github.com/RBKunnela/paybot-mcp/issues"
|
|
61
|
+
},
|
|
62
|
+
"engines": {
|
|
63
|
+
"node": ">=18"
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@modelcontextprotocol/sdk": "^1.27.0",
|
|
67
|
+
"zod": "^4.3.6"
|
|
68
|
+
},
|
|
69
|
+
"peerDependencies": {
|
|
70
|
+
"paybot-sdk": "^0.4.0"
|
|
71
|
+
},
|
|
72
|
+
"peerDependenciesMeta": {
|
|
73
|
+
"paybot-sdk": {
|
|
74
|
+
"optional": false
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"@types/node": "^25.3.0",
|
|
79
|
+
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
80
|
+
"@typescript-eslint/parser": "^7.0.0",
|
|
81
|
+
"@vitest/coverage-v8": "^4.1.7",
|
|
82
|
+
"eslint": "^8.56.0",
|
|
83
|
+
"paybot-sdk": "^0.4.0",
|
|
84
|
+
"prettier": "^3.1.0",
|
|
85
|
+
"tsx": "^4.7.0",
|
|
86
|
+
"typescript": "^5.3.0",
|
|
87
|
+
"vitest": "^4.1.7"
|
|
88
|
+
},
|
|
89
|
+
"optionalDependencies": {
|
|
90
|
+
"@esbuild/win32-x64": "^0.28.0",
|
|
91
|
+
"@rollup/rollup-win32-x64-msvc": "^4.60.4"
|
|
92
|
+
}
|
|
93
|
+
}
|