package.json•1.74 kB
{
"name": "sap-note-search-mcp",
"version": "0.0.1",
"description": "MCP server for searching SAP Notes/KB articles using SAP Passport authentication and Playwright automation",
"main": "dist/mcp-server.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/mcp-server.ts",
"dev:http": "tsx watch src/http-mcp-server.ts",
"serve": "node dist/mcp-server.js",
"serve:http": "AUTO_START=true node dist/http-mcp-server.js",
"serve:http:debug": "LOG_LEVEL=debug HTTP_PORT=3123 AUTO_START=true DEBUG_START=true node dist/http-mcp-server.js",
"start": "npm run build && npm run serve",
"start:http": "npm run build && npm run serve:http",
"start:http:debug": "npm run build && npm run serve:http:debug",
"test:auth": "npm run build && node test/test-auth.js",
"test:mcp": "npm run build && node test/test-mcp-server.js",
"test:api": "npm run build && node test/test-sap-api.js",
"test": "npm run test:auth && npm run test:api && npm run test:mcp",
"clean": "rimraf dist"
},
"keywords": [
"sap",
"notes",
"mcp",
"model-context-protocol",
"playwright",
"search",
"knowledge-base"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"ajv": "^8.16.0",
"cors": "^2.8.5",
"dotenv": "^16.4.0",
"express": "^4.18.2",
"pino": "^9.1.0",
"pino-pretty": "^11.2.0",
"playwright": "^1.54.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^22.5.0",
"rimraf": "^6.0.0",
"tsx": "^4.16.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=18.0.0"
}
}