@west10tech/notion-mcp 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -3
  2. package/package.json +8 -6
package/README.md CHANGED
@@ -1,6 +1,11 @@
1
1
  # notion-mcp
2
2
 
3
- MCP server with full notion capabilities (20 endpoints)
3
+ [![npm version](https://img.shields.io/npm/v/@west10tech/notion-mcp.svg)](https://www.npmjs.com/package/@west10tech/notion-mcp)
4
+ [![Coverage](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/gcaliene/85580419c40e9163928d29b56df2e00c/raw/coverage.json)]()
5
+
6
+ MCP server with full Notion capabilities (20 endpoints)
7
+
8
+ **npm:** https://www.npmjs.com/package/@west10tech/notion-mcp
4
9
 
5
10
  This MCP server includes the following integrations:
6
11
 
@@ -33,7 +38,7 @@ This MCP server provides 20 tools across 1 integrations:
33
38
  ## Installation
34
39
 
35
40
  ```bash
36
- npm install notion-mcp-496207f7-b2cc-4edc-aa28-a31b7fb738c2
41
+ npm install @west10tech/notion-mcp
37
42
  ```
38
43
 
39
44
  ## Environment Setup
@@ -65,7 +70,7 @@ Add this to your Claude Desktop configuration:
65
70
  "mcpServers": {
66
71
  "notion-mcp": {
67
72
  "command": "npx",
68
- "args": ["notion-mcp-496207f7-b2cc-4edc-aa28-a31b7fb738c2"],
73
+ "args": ["@west10tech/notion-mcp"],
69
74
  "env": {
70
75
  "NOTION_ACCESS_TOKEN": "your_notion_access_token_here"
71
76
  }
@@ -118,3 +123,4 @@ Example progress notification:
118
123
  }
119
124
  }
120
125
  ```
126
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@west10tech/notion-mcp",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "MCP server with full notion capabilities (20 endpoints)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -30,17 +30,19 @@
30
30
  "dotenv": "^16.3.0"
31
31
  },
32
32
  "devDependencies": {
33
+ "@semantic-release/changelog": "^6.0.3",
34
+ "@semantic-release/git": "^10.0.1",
35
+ "@semantic-release/github": "^10.0.0",
36
+ "@types/jest": "^30.0.0",
33
37
  "@types/node": "^20.0.0",
34
38
  "@typescript-eslint/eslint-plugin": "^7.0.0",
35
39
  "@typescript-eslint/parser": "^7.0.0",
36
40
  "eslint": "^8.42.0",
37
41
  "jest": "^29.5.0",
38
- "tsx": "^4.0.0",
39
- "typescript": "^5.0.0",
40
42
  "semantic-release": "^24.0.0",
41
- "@semantic-release/changelog": "^6.0.3",
42
- "@semantic-release/git": "^10.0.1",
43
- "@semantic-release/github": "^10.0.0"
43
+ "ts-jest": "^29.4.6",
44
+ "tsx": "^4.0.0",
45
+ "typescript": "^5.0.0"
44
46
  },
45
47
  "files": [
46
48
  "dist",