package.json•1.03 kB
{
"name": "mcp-notes",
"version": "1.0.5",
"description": "A simple note-taking MCP server for recording and managing notes with AI models.",
"main": "dist/notes-mcp-server.js",
"type": "module",
"license": "GPL-2.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/9Ninety/MCPNotes.git"
},
"bin": {
"mcp-notes-server": "dist/notes-mcp-server.js",
"mcp-notes-web-server": "dist/notes-web-server.js"
},
"scripts": {
"build": "shx rm -rf dist && tsc",
"dev:web": "bun src/notes-web-server.ts",
"prepublishOnly": "bun run build"
},
"files": [
"./dist",
"./bun.lockb"
],
"dependencies": {
"@aws-sdk/lib-dynamodb": "^3.799.0",
"@modelcontextprotocol/sdk": "^1.11.0",
"@types/express": "^4.17.21",
"commander": "^13.1.0",
"express": "^4.21.2",
"zod": "^3.24.3",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/bun": "^1.2.11",
"bun": "^1.2.11",
"shx": "^0.4.0",
"typescript": "^5.8.3"
}
}