Notion MCP Server

Official
{ "name": "@orbit-logistics/notion-mcp-server", "version": "0.1.0", "description": "MCP server for Notion integration", "bin": "dist/index.js", "files": [ "dist" ], "private": false, "scripts": { "clean": "npx rimraf dist", "postbuild": "cp README.md dist/ 2>/dev/null || true && chmod +x dist/index.js", "prebuild": "npm run clean", "build": "tsup src/index.ts --format esm,cjs --dts", "dev": "tsup src/index.ts --format esm,cjs --dts --watch", "lint": "eslint .", "prepublishOnly": "npm run build" }, "keywords": [ "notion", "mcp", "ai", "cli" ], "author": "Jan Czekala<jan@orbit.do>", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.5.0", "@notionhq/client": "^2.2.14", "zod": "^3.22.4" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.11.24", "@typescript-eslint/eslint-plugin": "^7.1.0", "@typescript-eslint/parser": "^7.1.0", "esbuild": "^0.20.1", "eslint": "^8.57.0", "jest": "^29.7.0", "ts-jest": "^29.1.2", "typescript": "^5.3.3" } }