consult-llm-mcp 2.6.0 → 2.7.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 (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +21 -0
  3. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## v2.7.0 (2026-03-08)
4
+
5
+ - Fixed cursor-agent tool success detection
6
+ - Show cursor thinking text content in monitor detail view instead of a static
7
+ "Thinking..." label
8
+ - Added PageUp/PageDown support in monitor detail view
9
+
10
+ ## v2.6.0 (2026-03-08)
11
+
12
+ - Added `consult-llm-monitor` TUI dashboard for real-time monitoring of active
13
+ consultations, with history tracking, detail view, and keyboard navigation
14
+
3
15
  ## v2.5.6 (2026-03-07)
4
16
 
5
17
  - Added bash installer (`curl | bash`) for installing without Node.js
package/README.md CHANGED
@@ -409,6 +409,27 @@ claude mcp add consult-llm \
409
409
  -- npx -y consult-llm-mcp
410
410
  ```
411
411
 
412
+ **Shell command permissions:**
413
+
414
+ Cursor CLI runs with `--mode ask`, which blocks shell commands by default. If
415
+ your prompts involve tools that need to run commands (e.g. `git diff` for code
416
+ review), allow them in `~/.cursor/cli-config.json`:
417
+
418
+ ```json
419
+ {
420
+ "permissions": {
421
+ "allow": [
422
+ "Shell(git diff*)",
423
+ "Shell(git log*)",
424
+ "Shell(git show*)"
425
+ ],
426
+ "deny": []
427
+ }
428
+ }
429
+ ```
430
+
431
+ Glob patterns are supported. The `deny` list takes precedence over `allow`.
432
+
412
433
  #### Multi-turn conversations
413
434
 
414
435
  CLI backends support multi-turn conversations via the `thread_id` parameter. The
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "consult-llm-mcp",
3
- "version": "2.6.0",
3
+ "version": "2.7.1",
4
4
  "description": "MCP server for consulting powerful AI models",
5
5
  "repository": {
6
6
  "type": "git",
@@ -31,9 +31,9 @@
31
31
  "ai"
32
32
  ],
33
33
  "optionalDependencies": {
34
- "consult-llm-mcp-darwin-arm64": "2.6.0",
35
- "consult-llm-mcp-darwin-x64": "2.6.0",
36
- "consult-llm-mcp-linux-x64": "2.6.0",
37
- "consult-llm-mcp-linux-arm64": "2.6.0"
34
+ "consult-llm-mcp-darwin-arm64": "2.7.1",
35
+ "consult-llm-mcp-darwin-x64": "2.7.1",
36
+ "consult-llm-mcp-linux-x64": "2.7.1",
37
+ "consult-llm-mcp-linux-arm64": "2.7.1"
38
38
  }
39
39
  }