prompt-clarifier-mcp 3.0.0 → 3.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 +21 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -60,6 +60,27 @@ The returned system prompt instructs your IDE's LLM to **search connected knowle
60
60
 
61
61
  > **No API key required.** The server makes no external LLM calls.
62
62
 
63
+ ### Option 1 — Global install (recommended)
64
+
65
+ ```bash
66
+ npm install -g prompt-clarifier-mcp
67
+ ```
68
+
69
+ Then use `prompt-clarifier-mcp` as the command in your IDE config instead of `npx`:
70
+
71
+ ```json
72
+ {
73
+ "command": "prompt-clarifier-mcp",
74
+ "args": []
75
+ }
76
+ ```
77
+
78
+ ### Option 2 — On-demand via npx
79
+
80
+ No install needed. Use `npx -y prompt-clarifier-mcp` directly in your IDE config (see examples below). The package is fetched automatically on first run.
81
+
82
+ ---
83
+
63
84
  ### Cursor
64
85
 
65
86
  Open `~/.cursor/mcp.json` (create it if it does not exist):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prompt-clarifier-mcp",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "MCP agent that clarifies user prompts before sending them to any LLM — works in Cursor, VS Code, IntelliJ, PyCharm, Claude Desktop",
5
5
  "main": "dist/index.js",
6
6
  "bin": {