package.jsonā¢1.97 kB
{
"name": "@surgbc/egw-research-server",
"version": "1.0.0",
"description": "MCP server providing fast access to local EGH (Ellen Gould Harmon) research database with offline API and PDF generation",
"main": "dist/server.js",
"bin": {
"egw-research-server": "dist/server.js"
},
"type": "module",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/gospelsounders/egw-writings-mcp.git",
"directory": "apps/local-server"
},
"author": {
"name": "Brian Onango",
"url": "https://github.com/surgbc"
},
"homepage": "https://github.com/gospelsounders/egw-writings-mcp#readme",
"bugs": {
"url": "https://github.com/gospelsounders/egw-writings-mcp/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"egw",
"ellen-white",
"writings",
"local",
"database",
"research",
"educational"
],
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"start:http": "node dist/server.js --http",
"start:mcp": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"dev:http": "tsx watch src/server.ts --http",
"dev:mcp": "tsx watch src/server.ts",
"clean": "rimraf dist",
"lint": "eslint src/ --ext .ts"
},
"dependencies": {
"@surgbc/egw-writings-shared": "workspace:*",
"@surgbc/egw-pdf-generator": "workspace:*",
"@modelcontextprotocol/sdk": "^1.0.0",
"express": "^4.18.2",
"cors": "^2.8.5",
"uuid": "^9.0.1",
"compression": "^1.7.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/uuid": "^9.0.7",
"@types/compression": "^1.7.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"rimraf": "^5.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}