-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
{
"name": "byte-mcp-server",
"version": "0.10.6",
"description": "MCP server for BYTE Library — per-byte USDC data feeds for AI agents on Arbitrum. Subscribe to first-party feeds or pay-per-call via x402; every settlement carries an EIP-712 PayloadAttestation receipt. No API keys, no token.",
"mcpName": "io.github.0rkz/byte-protocol",
"type": "module",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"byte-mcp": "dist/index.js"
},
"homepage": "https://www.payperbyte.io",
"repository": {
"type": "git",
"url": "https://github.com/0rkz/byte-mcp-server.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"byte-protocol",
"data-marketplace",
"ai-agents",
"arbitrum",
"depin",
"x402",
"agent-commerce"
],
"files": [
"dist",
"README.md",
"LICENSE",
"smithery.yaml"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "node test/e2e.mjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/express": "^5.0.6",
"@x402/core": "~2.13.0",
"@x402/evm": "^2.13.0",
"dotenv": "^16.4.5",
"express": "^5.2.1",
"viem": "^2.21.0",
"zod": "^4.3.6"
},
"overrides": {
"fast-uri": "^3.1.2",
"hono": "^4.12.22",
"ip-address": "^10.2.0",
"qs": "^6.15.2"
},
"devDependencies": {
"@types/node": "^20.14.0",
"typescript": "^5.5.0"
}
}