forked from aibtcdev/aibtc-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.29 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@aibtc/mcp-server",
"version": "1.65.0",
"description": "Bitcoin-native MCP server for AI agents: BTC/STX wallets, DeFi yield, sBTC peg, NFTs, and x402 payments.",
"mcpName": "io.github.aibtcdev/mcp-server",
"type": "module",
"main": "dist/index.js",
"bin": {
"aibtc-mcp-server": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "git config core.hooksPath >/dev/null 2>&1 || git config core.hooksPath .githooks 2>/dev/null || true",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"!dist/**/*.map",
"README.md",
"skill"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"claude",
"claude-code",
"mcp",
"model-context-protocol",
"x402",
"stacks",
"blockchain",
"crypto",
"payments",
"aibtc",
"agent-skills",
"clawhub"
],
"author": "aibtcdev",
"repository": {
"type": "git",
"url": "https://github.com/aibtcdev/aibtc-mcp-server.git"
},
"homepage": "https://github.com/aibtcdev/aibtc-mcp-server#readme",
"license": "MIT",
"dependencies": {
"@aibtc/tx-schemas": "^0.7.0",
"@bitflowlabs/core-sdk": "^3.0.0",
"@buildonspark/spark-sdk": "^0.7.14",
"@faktoryfun/styx-sdk": "^1.3.5",
"@modelcontextprotocol/sdk": "^1.27.1",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@scure/base": "^2.0.0",
"@scure/bip32": "^1.4.0",
"@scure/bip39": "^2.0.1",
"@scure/btc-signer": "^2.0.1",
"@stacks/common": "^7.3.1",
"@stacks/encryption": "^7.3.1",
"@stacks/network": "^7.3.1",
"@stacks/transactions": "^7.3.1",
"@stacks/wallet-sdk": "^7.2.0",
"alex-sdk": "^3.2.1",
"axios": "^1.17.0",
"dotenv": "^17.3.1",
"light-bolt11-decoder": "^3.2.0",
"micro-ordinals": "^0.3.0",
"nostr-tools": "^2.23.3",
"path-to-regexp": "^8.4.0",
"sbtc": "^0.3.2",
"tslib": "^2.8.1",
"ws": "^8.21.0",
"x402-stacks": "^2.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.19.13",
"@types/ws": "^8.18.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
},
"overrides": {
"lodash": "^4.18.0",
"axios": "^1.17.0"
}
}