-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1017 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1017 Bytes
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
{
"name": "@goodmeta/intelligence-mcp",
"version": "0.1.1",
"description": "MCP server for agent payments ecosystem intelligence. Pay per query via x402.",
"type": "module",
"bin": {
"intelligence-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"agent-payments",
"agentic-commerce",
"x402",
"ap2",
"mpp",
"intelligence",
"ai-agent",
"payment-verification"
],
"author": "Eric Tsang <eric@goodmeta.co>",
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.19.12",
"@modelcontextprotocol/sdk": "^1.29.0",
"@x402/core": "^2.8.0",
"@x402/evm": "^2.8.0",
"@x402/mcp": "^2.8.0",
"dotenv": "^17.4.0",
"hono": "^4.12.9",
"mppx": "^0.5.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}