-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.7 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "notion-mcp-server",
"version": "2.5.1",
"type": "module",
"bin": {
"notion-mcp-server": "build/index.js"
},
"scripts": {
"build": "shx rm -rf build && tsc && shx chmod +x build/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"inspector": "npx @modelcontextprotocol/inspector build/index.js -e NOTION_TOKEN=your_notion_token -e NOTION_PAGE_ID=your_notion_page_id"
},
"homepage": "https://github.com/awkoy/notion-mcp-server",
"keywords": [
"notion",
"notion-mcp",
"notion-mcp-server",
"notion-api",
"notion-integration",
"mcp",
"mcp-server",
"modelcontextprotocol",
"model-context-protocol",
"claude",
"claude-desktop",
"cursor",
"chatgpt",
"anthropic",
"ai",
"ai-agent",
"agent",
"llm"
],
"author": "Yaroslav Boiko <y.boikodeveloper@gmail.com>",
"license": "MIT",
"description": "Notion MCP server for Claude, Cursor, ChatGPT, and Claude Desktop — connect AI agents to Notion via the Model Context Protocol. Create pages, query databases, append blocks, upload files, and more in natural language.",
"files": [
"build"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@notionhq/client": "^5.22.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/mdast": "^4.0.4",
"@types/node": "^22.13.10",
"shx": "^0.3.4",
"typescript": "^5.8.2",
"vitest": "^4.1.7"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awkoy/notion-mcp-server.git"
}
}