@miraigent/free-ai-ops-mcp 0.1.38 → 0.1.39

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.39] - 2026-07-15
4
+
5
+ ### Added
6
+
7
+ - Added smoke-test coverage for the public `--help` feedback route and
8
+ private-memory boundary so npm users keep seeing the safe GitHub issue path
9
+ before sharing MCP troubleshooting details.
10
+
3
11
  ## [0.1.38] - 2026-07-14
4
12
 
5
13
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miraigent/free-ai-ops-mcp",
3
- "version": "0.1.38",
3
+ "version": "0.1.39",
4
4
  "description": "Free MCP server for developers adding human review gates, prompt risk checks, FAQ review, and CRM note safety to AI tools.",
5
5
  "homepage": "https://github.com/Miraigent/miraigent-free-ai-ops-mcp",
6
6
  "type": "module",
@@ -24,6 +24,8 @@ await new Promise((resolve, reject) => {
24
24
  assert.match(helpStdout, /npx -y free-ai-ops-mcp@npm:@miraigent\/free-ai-ops-mcp/);
25
25
  assert.match(helpStdout, /human_review_gate/);
26
26
  assert.match(helpStdout, /Do not paste secrets/);
27
+ assert.match(helpStdout, /private memory behavior/);
28
+ assert.match(helpStdout, /github\.com\/Miraigent\/miraigent-free-ai-ops-mcp\/issues\/new\/choose/);
27
29
 
28
30
  const requests = [
29
31
  { jsonrpc: '2.0', id: 1, method: 'initialize', params: {} },