@miraigent/free-ai-ops-mcp 0.1.33 → 0.1.35

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 +16 -0
  2. package/README.md +20 -0
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.35] - 2026-07-10
4
+
5
+ ### Changed
6
+
7
+ - Added a README version mismatch checklist so npm and GitHub users can compare
8
+ the registry version, npx help output, and MCP initialize response before
9
+ changing desktop client configuration.
10
+
11
+ ## [0.1.34] - 2026-07-09
12
+
13
+ ### Changed
14
+
15
+ - Added a README version-check command so npm and GitHub users can confirm the
16
+ public registry version before debugging local npx or desktop MCP client
17
+ cache behavior.
18
+
3
19
  ## [0.1.33] - 2026-07-08
4
20
 
5
21
  ### Changed
package/README.md CHANGED
@@ -55,6 +55,26 @@ If you are checking the package from npm search, run the public help first:
55
55
  The help output lists the available MCP tools, the one-command smoke test, and
56
56
  the public-safe boundary before you send any JSON-RPC input.
57
57
 
58
+ If a local npx cache or desktop MCP client appears stale, compare it with the
59
+ public registry version before changing private client configuration:
60
+
61
+ npm view @miraigent/free-ai-ops-mcp version
62
+
63
+ The version printed by `npm view` should match the version shown in the package
64
+ help output and in the MCP `initialize` response.
65
+
66
+ Quick version mismatch check:
67
+
68
+ 1. Run `npm view @miraigent/free-ai-ops-mcp version`.
69
+ 2. Run `npx -y free-ai-ops-mcp@npm:@miraigent/free-ai-ops-mcp --help` and
70
+ confirm the header shows the same version.
71
+ 3. Run the one-command smoke test and confirm the `initialize` response includes
72
+ the same `serverInfo.version`.
73
+
74
+ If only the desktop MCP client shows an older version after those checks pass,
75
+ restart the client and re-check its `command` and `args` path before changing
76
+ any private workflow data.
77
+
58
78
  If the result is unclear, open a Tried It feedback issue with synthetic input
59
79
  only. A useful issue can be as small as:
60
80
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miraigent/free-ai-ops-mcp",
3
- "version": "0.1.33",
3
+ "version": "0.1.35",
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",