ai-readme-mcp 0.6.1 → 0.6.2
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 +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -94,7 +94,7 @@ This MCP (Model Context Protocol) server automates the entire workflow:
|
|
|
94
94
|
In your project directory, run:
|
|
95
95
|
|
|
96
96
|
```bash
|
|
97
|
-
claude mcp add --scope project ai-readme-manager npx -- -y ai-readme-mcp
|
|
97
|
+
claude mcp add --scope project ai-readme-manager npx -- -y ai-readme-mcp@latest
|
|
98
98
|
```
|
|
99
99
|
|
|
100
100
|
This creates a `.mcp.json` file that uses `npx` to run the package - no installation or path configuration needed!
|
|
@@ -151,7 +151,7 @@ Add to Cursor's MCP configuration file:
|
|
|
151
151
|
"mcpServers": {
|
|
152
152
|
"ai-readme-manager": {
|
|
153
153
|
"command": "npx",
|
|
154
|
-
"args": ["-y", "ai-readme-mcp"]
|
|
154
|
+
"args": ["-y", "ai-readme-mcp@latest"]
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
}
|
|
@@ -181,7 +181,7 @@ Add to your VSCode `settings.json`:
|
|
|
181
181
|
"github.copilot.chat.mcp.servers": {
|
|
182
182
|
"ai-readme-manager": {
|
|
183
183
|
"command": "npx",
|
|
184
|
-
"args": ["-y", "ai-readme-mcp"]
|
|
184
|
+
"args": ["-y", "ai-readme-mcp@latest"]
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
187
|
}
|
|
@@ -201,7 +201,7 @@ Add to `claude_desktop_config.json`:
|
|
|
201
201
|
"mcpServers": {
|
|
202
202
|
"ai-readme-manager": {
|
|
203
203
|
"command": "npx",
|
|
204
|
-
"args": ["-y", "ai-readme-mcp"]
|
|
204
|
+
"args": ["-y", "ai-readme-mcp@latest"]
|
|
205
205
|
}
|
|
206
206
|
}
|
|
207
207
|
}
|
|
@@ -223,20 +223,20 @@ No installation needed! Just configure and use via npx:
|
|
|
223
223
|
"mcpServers": {
|
|
224
224
|
"ai-readme-manager": {
|
|
225
225
|
"command": "npx",
|
|
226
|
-
"args": ["-y", "ai-readme-mcp"]
|
|
226
|
+
"args": ["-y", "ai-readme-mcp@latest"]
|
|
227
227
|
}
|
|
228
228
|
}
|
|
229
229
|
}
|
|
230
230
|
```
|
|
231
231
|
|
|
232
|
-
> The `-y` flag automatically accepts the npx prompt.
|
|
232
|
+
> The `-y` flag automatically accepts the npx prompt. The `@latest` ensures you always get the newest version.
|
|
233
233
|
|
|
234
234
|
**Option 2: Global Installation**
|
|
235
235
|
|
|
236
236
|
Install once globally, use everywhere:
|
|
237
237
|
|
|
238
238
|
```bash
|
|
239
|
-
npm install -g ai-readme-mcp
|
|
239
|
+
npm install -g ai-readme-mcp@latest
|
|
240
240
|
```
|
|
241
241
|
|
|
242
242
|
Then configure:
|