Bitcoin MCP Server
by AbdelStark
Verified
{
"name": "bitcoin-mcp",
"version": "0.0.6",
"description": "A Model Context Protocol server for interacting with Bitcoin.",
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"bin": {
"bitcoin-mcp": "./build/cli.js"
},
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js"
}
},
"files": [
"build",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"start": "node build/cli.js",
"dev": "tsx watch src/cli.ts",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .ts --cache",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"clean": "rimraf build coverage .eslintcache",
"prebuild": "npm run clean",
"prepare": "husky install"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"server",
"nostr",
"claude"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"bitcoinjs-lib": "6.1.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ecpair": "^2.1.0",
"express": "^4.18.3",
"husky": "^9.1.7",
"node-fetch": "^3.3.2",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"tiny-secp256k1": "^2.2.3",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"zod": "^3.24.0",
"bolt11-decoder": "^1.2.6"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/node-fetch": "^2.6.11",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.10",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}