@n24q02m/better-notion-mcp 2.34.3 → 2.34.4-beta.1
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.
- package/README.md +6 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ mcp-name: io.github.n24q02m/better-notion-mcp
|
|
|
74
74
|
>
|
|
75
75
|
> Past months saw significant churn around credential handling and the daemon-bridge auto-spawn pattern. This caused multi-process races, browser tab spam, and inconsistent setup UX across plugins. **As of v<auto>, the architecture is stable**: 2 clean modes (stdio + HTTP), no daemon-bridge layer, no auto-spawn from stdio.
|
|
76
76
|
>
|
|
77
|
-
> Apologies for the instability period. If you encountered issues with prior versions, please update to v<auto>+ and follow the current
|
|
77
|
+
> Apologies for the instability period. If you encountered issues with prior versions, please update to v<auto>+ and follow the current [Setup guide](https://mcp.n24q02m.com/servers/better-notion-mcp/setup/) -- most prior workarounds are no longer needed.
|
|
78
78
|
>
|
|
79
79
|
> **Related plugins from the same author**:
|
|
80
80
|
> - [wet-mcp](https://github.com/n24q02m/wet-mcp) -- Web search + content extraction
|
|
@@ -134,11 +134,12 @@ Full docs at **[mcp.n24q02m.com/servers/better-notion-mcp/](https://mcp.n24q02m.
|
|
|
134
134
|
|:---------|:---------|:--------|:------------|
|
|
135
135
|
| `NOTION_TOKEN` | Yes (stdio) | - | Notion integration token |
|
|
136
136
|
| `TRANSPORT_MODE` | No | `stdio` | Set to `http` for remote mode |
|
|
137
|
-
| `PUBLIC_URL` |
|
|
137
|
+
| `PUBLIC_URL` | No (http) | - | Server's public URL for OAuth redirect links |
|
|
138
138
|
| `NOTION_OAUTH_CLIENT_ID` | Yes (http) | - | Notion Public Integration client ID |
|
|
139
139
|
| `NOTION_OAUTH_CLIENT_SECRET` | Yes (http) | - | Notion Public Integration client secret |
|
|
140
|
-
| `
|
|
141
|
-
| `PORT` | No | `
|
|
140
|
+
| `MCP_AUTH_DISABLE` | No (http) | - | Set to `1` to skip Bearer JWT verification when behind an external auth gateway |
|
|
141
|
+
| `PORT` | No | `0` (OS-assigned) | Server port; set explicitly (e.g. `8080`) to bind a fixed port |
|
|
142
|
+
| `HOST` | No | - | Bind address (http mode) |
|
|
142
143
|
|
|
143
144
|
### Self-Hosting (Remote Mode)
|
|
144
145
|
|
|
@@ -152,10 +153,10 @@ You can self-host the remote server with your own Notion OAuth app.
|
|
|
152
153
|
```bash
|
|
153
154
|
docker run -p 8080:8080 \
|
|
154
155
|
-e TRANSPORT_MODE=http \
|
|
156
|
+
-e PORT=8080 \
|
|
155
157
|
-e PUBLIC_URL=https://your-domain.com \
|
|
156
158
|
-e NOTION_OAUTH_CLIENT_ID=your-client-id \
|
|
157
159
|
-e NOTION_OAUTH_CLIENT_SECRET=your-client-secret \
|
|
158
|
-
-e DCR_SERVER_SECRET=$(openssl rand -hex 32) \
|
|
159
160
|
n24q02m/better-notion-mcp:latest
|
|
160
161
|
```
|
|
161
162
|
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"codex",
|
|
17
17
|
"opencode"
|
|
18
18
|
],
|
|
19
|
-
"version": "2.34.
|
|
19
|
+
"version": "2.34.4-beta.1",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"type": "module",
|
|
22
22
|
"packageManager": "bun@1.2.21",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
],
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
60
|
-
"@n24q02m/mcp-core": "1.17.1",
|
|
60
|
+
"@n24q02m/mcp-core": "1.17.2-beta.1",
|
|
61
61
|
"@notionhq/client": "^5.22.0",
|
|
62
62
|
"zod": "^4.4.3"
|
|
63
63
|
},
|