Files
ra-h-os/apps/mcp-server-standalone/package.json
T
“BeeRad”andClaude Opus 4.6 d6987a3dc1 fix(mcp): v1.4.1 — add Node version check and better-sqlite3 error handling
- Check Node version on startup, exit with clear message if >=24
- Catch better-sqlite3 load failure with actionable error message
- Cap engines to node >=18 <24 in package.json

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-10 15:58:21 +11:00

50 lines
1.0 KiB
JSON

{
"name": "ra-h-mcp-server",
"version": "1.4.1",
"description": "Connect Claude Code/Desktop to your RA-H knowledge base. Direct SQLite access - no web app required.",
"main": "index.js",
"bin": {
"ra-h-mcp-server": "./index.js"
},
"scripts": {
"start": "node index.js"
},
"keywords": [
"mcp",
"claude",
"claude-code",
"claude-desktop",
"knowledge-base",
"knowledge-management",
"sqlite",
"ra-h",
"rah",
"pkm",
"second-brain"
],
"author": "Bradley Morris <bradwmorriswork@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bradwmorris/ra-h"
},
"homepage": "https://ra-h.app",
"bugs": {
"url": "https://github.com/bradwmorris/ra-h/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^11.0.0",
"zod": "^3.23.0"
},
"engines": {
"node": ">=18.0.0 <24.0.0"
},
"files": [
"index.js",
"services/",
"guides/",
"README.md"
]
}