Lightning Network MCP Server

by AbdelStark
Verified
{ "name": "nostr-mcp", "version": "0.0.1", "description": "A Model Context Protocol server for interacting with Nostr, enabling posting notes and more", "type": "module", "main": "build/index.js", "bin": { "nostr-server": "./build/index.js" }, "files": [ "build", "README.md" ], "scripts": { "build": "tsc", "start": "tsx src/index.ts", "dev": "tsx watch src/index.ts", "prepublishOnly": "npm run build" }, "keywords": [ "mcp", "modelcontextprotocol", "server", "lightning", "lnbits" ], "author": "", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "0.6.0", "@nostr-dev-kit/ndk": "^2.5.1", "dotenv": "^16.4.5", "pino": "^8.19.0", "express": "^4.18.3", "cors": "^2.8.5", "zod": "^3.24.0", "tsx": "^4.7.1", "typescript": "^5.4.2", "bolt11-decoder": "^1.2.6", "node-fetch": "^3.3.2" }, "devDependencies": { "@types/node": "^20.11.24", "@types/pino": "^7.0.5", "@types/express": "^4.17.21", "@types/cors": "^2.8.17", "pino-pretty": "^10.3.1", "typescript": "^5.3.3" } }