@miraigent/free-ai-ops-mcp 0.1.29 → 0.1.31

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,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.31] - 2026-07-06
4
+
5
+ ### Changed
6
+
7
+ - Clarified that MCP JSON-RPC tool results are wrapped in `content[0].text`, so
8
+ npm and GitHub users know where to parse the public smoke-test status before
9
+ connecting a real workflow or changing desktop client config.
10
+
11
+ ## [0.1.30] - 2026-07-03
12
+
13
+ ### Fixed
14
+
15
+ - Corrected the MCP JSON-RPC session README to name the actual
16
+ `human_review_gate` response field `nextLogRow`, so npm and GitHub users can
17
+ compare the public smoke-test output without looking for an old field name.
18
+
3
19
  ## [0.1.29] - 2026-07-02
4
20
 
5
21
  ### Changed
@@ -38,7 +38,11 @@ client config:
38
38
  `human_review_gate`, `faq_candidate_review`, `ai_safe_crm_note`, and
39
39
  `prompt_risk_review`.
40
40
  - Response 3 should return a `human_review_gate` content block whose JSON text
41
- includes `gateStatus`, `reviewOwner`, `nextAction`, and `boundary`.
41
+ includes `gateStatus`, `reviewOwner`, `nextLogRow`, and `boundary`.
42
+
43
+ In raw JSON-RPC output, the tool result is wrapped by MCP as `content[0].text`.
44
+ Parse that text value as JSON, then check `gateStatus` before connecting a real
45
+ workflow or changing a desktop client config.
42
46
 
43
47
  If those fields appear in the terminal but not in Claude Desktop, Cursor, or
44
48
  another client, the package is likely running and the next thing to check is the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miraigent/free-ai-ops-mcp",
3
- "version": "0.1.29",
3
+ "version": "0.1.31",
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",