@miraigent/free-ai-ops-mcp 0.1.32 → 0.1.34

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 +28 -0
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.34] - 2026-07-09
4
+
5
+ ### Changed
6
+
7
+ - Added a README version-check command so npm and GitHub users can confirm the
8
+ public registry version before debugging local npx or desktop MCP client
9
+ cache behavior.
10
+
11
+ ## [0.1.33] - 2026-07-08
12
+
13
+ ### Changed
14
+
15
+ - Added a minimal README parsing example that shows MCP users how to read the
16
+ JSON tool result from `content[0].text` before wiring the package into a
17
+ desktop client or private workflow.
18
+
3
19
  ## [0.1.32] - 2026-07-07
4
20
 
5
21
  ### Added
package/README.md CHANGED
@@ -55,6 +55,14 @@ 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
+
58
66
  If the result is unclear, open a Tried It feedback issue with synthetic input
59
67
  only. A useful issue can be as small as:
60
68
 
@@ -136,6 +144,26 @@ files.
136
144
  After the smoke test runs, look for the status field from the tool you called
137
145
  before changing client configuration or private workflows.
138
146
 
147
+ In raw JSON-RPC output, MCP wraps each tool result inside `content[0].text`.
148
+ Parse that text value as JSON before you check the returned decision:
149
+
150
+ const response = JSON.parse(lineFromStdout);
151
+ const toolResult = JSON.parse(response.result.content[0].text);
152
+ console.log(toolResult.gateStatus);
153
+
154
+ For the bundled smoke-test session, that prints `stop`. Use the parsed
155
+ `gateStatus`, `recommendation`, or `recommendedStatus` field from the relevant
156
+ tool before changing a desktop MCP client config or connecting private data.
157
+
158
+ If you only need a terminal check, you can copy the final JSON-RPC line from the
159
+ smoke-test output and inspect the wrapped text field with Node:
160
+
161
+ node -e 'const r=JSON.parse(process.argv[1]); console.log(JSON.parse(r.result.content[0].text));' '<paste one response line here>'
162
+
163
+ Paste only the synthetic response from the public example. Do not paste private
164
+ customer records or desktop client logs into shell history, screenshots, or
165
+ GitHub issues.
166
+
139
167
  For `human_review_gate`:
140
168
 
141
169
  - `auto_ok`: the synthetic draft looks low risk, but the tool still does not
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miraigent/free-ai-ops-mcp",
3
- "version": "0.1.32",
3
+ "version": "0.1.34",
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",