@nonz250/notepm-mcp-server 0.5.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -93,6 +93,15 @@ Add the following to your Claude Code settings file (`.claude/settings.json` or
93
93
  }
94
94
  ```
95
95
 
96
+ ### Codex CLI
97
+
98
+ ```bash
99
+ codex mcp add notepm \
100
+ --env NOTEPM_TEAM_DOMAIN=your-team-domain \
101
+ --env NOTEPM_ACCESS_TOKEN=your-access-token \
102
+ -- npx -y @nonz250/notepm-mcp-server
103
+ ```
104
+
96
105
  ### Using Global Installation
97
106
 
98
107
  If you installed globally, replace `npx` with the direct command:
@@ -151,6 +160,13 @@ claude mcp add notepm \
151
160
  -- npm run start --prefix /path/to/notepm-mcp-server
152
161
  ```
153
162
 
163
+ ```bash
164
+ codex mcp add notepm \
165
+ --env NOTEPM_TEAM_DOMAIN=your-team-domain \
166
+ --env NOTEPM_ACCESS_TOKEN=your-access-token \
167
+ -- npm run start --prefix /path/to/notepm-mcp-server
168
+ ```
169
+
154
170
  ### Setup
155
171
 
156
172
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nonz250/notepm-mcp-server",
3
- "version": "0.5.0",
3
+ "version": "1.0.1",
4
4
  "description": "An unofficial MCP server for NotePM - a knowledge management platform",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",