Nostr MCP Server

by AbdelStark
Verified
{ "name": "nostr-mcp", "version": "0.0.15", "description": "A Model Context Protocol server for interacting with Nostr, enabling posting notes and more", "type": "module", "main": "./build/index.js", "types": "./build/index.d.ts", "bin": { "nostr-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", "@nostr-dev-kit/ndk": "^2.5.1", "cors": "^2.8.5", "dotenv": "^16.4.5", "express": "^4.18.3", "husky": "^9.1.7", "pino": "^8.19.0", "pino-pretty": "^10.3.1", "tsx": "^4.7.1", "typescript": "^5.4.2", "zod": "^3.24.0" }, "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/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.5", "ts-jest": "^29.1.2", "typescript": "^5.3.3" } }