beeper-mcp-bridge
Version:
Persistent SSE bridge for Beeper Desktop MCP integration. Connect Beeper Desktop to Poke and other MCP clients via ngrok.
61 lines (60 loc) • 1.37 kB
JSON
{
"name": "beeper-mcp-bridge",
"version": "1.0.4",
"description": "Persistent SSE bridge for Beeper Desktop MCP integration. Connect Beeper Desktop to Poke and other MCP clients via ngrok.",
"main": "dist/index.js",
"bin": {
"beeper-mcp": "./dist/cli.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"beeper",
"mcp",
"bridge",
"sse",
"model-context-protocol",
"ngrok",
"poke",
"beeper-desktop"
],
"author": "Yaz A. Caleb",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/beeper-mcp-bridge.git"
},
"engines": {
"node": ">=18.0.0"
},
"type": "commonjs",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"dotenv": "^16.0.0",
"express": "^4.18.0",
"http-proxy-middleware": "^3.0.0",
"inquirer": "^10.0.0",
"node-persist": "^4.0.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/inquirer": "^9.0.0",
"@types/node": "^20.0.0",
"@types/node-persist": "^3.1.8",
"@types/uuid": "^9.0.0",
"tsx": "^4.0.0",
"typescript": "^5.3.0"
}
}