package.json•1.75 kB
{
"name": "@ramidecodes/mcp-server-notion",
"version": "1.0.6",
"description": "A Model Context Protocol (MCP) server that exposes the official Notion SDK",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-server-notion": "dist/bin.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"docs",
".cursor/rules"
],
"scripts": {
"build": "tsc",
"start": "node dist/bin.js",
"dev": "ts-node-dev --respawn --transpile-only src/bin.ts",
"lint": "eslint --ext .ts src/",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"mcp",
"notion",
"model-context-protocol",
"llm",
"mcp-server",
"cursor",
"modelcontextprotocol",
"notion-api",
"notion-sdk-js"
],
"author": "Ramiro Ramirez <ramidecodes@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ramidecodes/mcp-server-notion.git"
},
"homepage": "https://github.com/ramidecodes/mcp-server-notion#readme",
"bugs": {
"url": "https://github.com/ramidecodes/mcp-server-notion/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.6.1",
"@notionhq/client": "2.2.16",
"cors": "2.8.5",
"dotenv": "16.4.7",
"express": "4.21.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/cors": "2.8.17",
"@types/express": "5.0.0",
"@types/node": "22.13.8",
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"eslint": "9.21.0",
"ts-node-dev": "2.0.0",
"typescript": "5.8.2"
}
}