package.json•1.36 kB
{
"name": "@hubert/mcp-personal-kb",
"version": "1.0.0",
"description": "MCP server for persistent personal/organizational knowledge base across AI agents",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"watch": "tsc --watch",
"bridge": "tsx src/http-bridge.ts",
"bridge:prod": "node dist/http-bridge.js",
"https": "node start-https-bridge.js",
"deploy": "npm run build && npm run https",
"build:netlify": "tsc netlify/functions/mcp-bridge.ts --outDir netlify/functions --module commonjs --target es2020 --esModuleInterop --skipLibCheck",
"deploy:netlify": "netlify deploy --prod",
"deploy:preview": "netlify deploy"
},
"keywords": [
"mcp",
"ai-agent",
"knowledge-base",
"personal-context",
"memory"
],
"author": "Hubert",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"chalk": "^5.3.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"fuse.js": "^7.0.0",
"ngrok": "^5.0.0-beta.2"
},
"devDependencies": {
"@netlify/functions": "^4.2.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
}
}