package.json•2.08 kB
{
"name": "@moengage/documentation-mcp-server",
"version": "1.0.0",
"description": "MCP server for MoEngage documentation (developers, help, partners) with automatic updates",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"moengage-mcp-server": "./dist/index.js"
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"clean": "rm -rf dist node_modules",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"moengage",
"documentation",
"api",
"sdk",
"claude",
"cursor",
"ai",
"assistant",
"search",
"docs"
],
"author": "MoEngage",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/poojitha-rachuri/moengage-documentation-mcp-server.git"
},
"homepage": "https://github.com/poojitha-rachuri/moengage-documentation-mcp-server#readme",
"bugs": {
"url": "https://github.com/poojitha-rachuri/moengage-documentation-mcp-server/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"cheerio": "^1.0.0-rc.12",
"axios": "^1.7.7",
"xml2js": "^0.6.2",
"turndown": "^7.1.2",
"node-cron": "^3.0.3",
"sqlite3": "^5.1.6",
"winston": "^3.11.0",
"zod": "^3.22.4",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/xml2js": "^0.4.14",
"@types/turndown": "^5.0.4",
"@types/node-cron": "^3.0.11",
"typescript": "^5.0.0",
"tsx": "^4.0.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}