chore: scaffold novu-mcp-server project

This commit is contained in:
2026-03-30 13:51:57 +02:00
commit d98ed5733d
4 changed files with 2368 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{
"name": "novu-mcp-server",
"version": "1.0.0",
"description": "MCP server for Novu notification infrastructure API",
"type": "module",
"main": "dist/index.js",
"bin": {
"novu-mcp-server": "dist/index.js"
},
"scripts": {
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"clean": "rm -rf dist"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"axios": "^1.7.9",
"express": "^4.21.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}