@nextnext/mcp-server 0.1.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 +21 -0
- package/README.md +73 -0
- package/dist/index.js +109254 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nextnext/mcp-server",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "NextNext MCP Server - A sovereign shopping agent with crypto wallet integration",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"nextnext-mcp": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "bun build src/index.ts --outdir dist --target node --format esm",
|
|
16
|
+
"prepublishOnly": "npm run build",
|
|
17
|
+
"start": "node dist/index.js --mode=stdio",
|
|
18
|
+
"start:http": "node dist/index.js --mode=http --port=8000",
|
|
19
|
+
"dev": "bun run src/index.ts --mode=http",
|
|
20
|
+
"dev:stdio": "bun run src/index.ts --mode=stdio",
|
|
21
|
+
"test": "bun run tests/e2e-test.ts",
|
|
22
|
+
"test:quick": "bun run tests/e2e-simple.ts",
|
|
23
|
+
"test:payment": "bun run tests/e2e-payment.ts",
|
|
24
|
+
"test:passthrough": "bun run tests/e2e-passthrough.ts",
|
|
25
|
+
"test:http": "bun run tests/e2e-http-server.ts",
|
|
26
|
+
"test:all": "bun run test:quick && bun run test:http && bun run test && bun run test:payment && bun run test:passthrough"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"mcp",
|
|
30
|
+
"nextnext",
|
|
31
|
+
"shopping",
|
|
32
|
+
"agent",
|
|
33
|
+
"crypto",
|
|
34
|
+
"nostr",
|
|
35
|
+
"x402",
|
|
36
|
+
"model-context-protocol"
|
|
37
|
+
],
|
|
38
|
+
"author": "NextNext",
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/nextnext-dev/network-of-next.git"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://nextnext.dev",
|
|
45
|
+
"bugs": {
|
|
46
|
+
"url": "https://github.com/nextnext-dev/network-of-next/issues"
|
|
47
|
+
},
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=18.0.0"
|
|
50
|
+
},
|
|
51
|
+
"publishConfig": {
|
|
52
|
+
"access": "public"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
56
|
+
"@supabase/supabase-js": "^2.89.0",
|
|
57
|
+
"@types/ws": "^8.18.1",
|
|
58
|
+
"@upstash/redis": "^1.36.1",
|
|
59
|
+
"axios": "^1.7.9",
|
|
60
|
+
"nostr-tools": "^2.19.4",
|
|
61
|
+
"viem": "^2.21.45",
|
|
62
|
+
"ws": "^8.18.3",
|
|
63
|
+
"x402": "^0.6.6",
|
|
64
|
+
"x402-axios": "^0.6.0",
|
|
65
|
+
"yaml": "^2.6.1",
|
|
66
|
+
"zod": "^3.24.1"
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@types/node": "^24.6.0",
|
|
70
|
+
"typescript": "^5.7.0"
|
|
71
|
+
}
|
|
72
|
+
}
|