package.json•1.03 kB
{
"name": "notion-mcp-server",
"version": "1.0.0",
"description": "A Model Context Protocol server for Notion API integration",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "ts-node --esm src/index.ts",
"start": "node dist/index.js",
"watch": "nodemon --exec ts-node --esm src/index.ts",
"test": "npm run build && node test-notion.js",
"test-simple": "npm run build && node -e \"console.log('✅ 建置成功!MCP 伺服器可以正常執行')\"",
"test-client": "ts-node --esm examples/test-client.ts"
},
"keywords": [
"mcp",
"notion",
"api",
"server"
],
"author": "",
"license": "MIT",
"bin": {
"notion-mcp-server": "dist/index.js"
},
"devDependencies": {
"@types/node": "^24.1.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"@notionhq/client": "^4.0.1",
"dotenv": "^17.2.1",
"zod": "^3.25.76"
}
}