@miraigent/free-ai-ops-mcp 0.1.20 → 0.1.22

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.22] - 2026-06-22
4
+
5
+ ### Changed
6
+
7
+ - Added response-reading guidance to the MCP JSON-RPC session example so npm and
8
+ GitHub users can tell whether the package is running before debugging desktop
9
+ MCP client configuration.
10
+
11
+ ## [0.1.21] - 2026-06-21
12
+
13
+ ### Changed
14
+
15
+ - Added an MCP client troubleshooting checklist to README so Claude Desktop,
16
+ Cursor, and other MCP users can separate terminal package success from client
17
+ configuration issues before opening public-safe feedback issues.
18
+
3
19
  ## [0.1.20] - 2026-06-20
4
20
 
5
21
  ### Added
package/README.md CHANGED
@@ -80,6 +80,26 @@ Claude Desktop config location:
80
80
  - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
81
81
  - Windows: `%APPDATA%\Claude\claude_desktop_config.json`
82
82
 
83
+ ## MCP Client Troubleshooting Checklist
84
+
85
+ If the package runs from the terminal but does not appear inside Claude Desktop,
86
+ Cursor, or another MCP client, check the connection in this order:
87
+
88
+ - Run `npx -y free-ai-ops-mcp@npm:@miraigent/free-ai-ops-mcp --help` in the
89
+ same shell account that launches the MCP client.
90
+ - Confirm the client config uses `command: "npx"` and the exact args shown in
91
+ this README.
92
+ - Restart the MCP client after saving the config. Most desktop clients read MCP
93
+ server config only on startup.
94
+ - Run the one-command smoke test with the public JSON-RPC session before
95
+ changing private workflows.
96
+ - If `tools/list` works in the terminal but not in the client, open a Tried It
97
+ feedback issue with the client name, operating system, command shape, and the
98
+ returned public-safe status fields.
99
+
100
+ Do not paste real customer records, secrets, internal policy text, paid product
101
+ files, or private memory behavior into client logs or GitHub issues.
102
+
83
103
  ## What Success Looks Like
84
104
 
85
105
  Use this quick check before connecting private systems or opening an issue:
@@ -23,6 +23,23 @@ include a human_review_gate result with:
23
23
  - reviewOwner: support lead
24
24
  - boundary: this tool is a review helper and does not send messages
25
25
 
26
+ ## Read The Responses
27
+
28
+ Use the response shape as a quick acceptance check before changing a desktop MCP
29
+ client config:
30
+
31
+ - Response 1 should include `serverInfo.name` set to
32
+ `miraigent-free-ai-ops-mcp`.
33
+ - Response 2 should include four tool names:
34
+ `human_review_gate`, `faq_candidate_review`, `ai_safe_crm_note`, and
35
+ `prompt_risk_review`.
36
+ - Response 3 should return a `human_review_gate` content block whose JSON text
37
+ includes `gateStatus`, `reviewOwner`, `nextAction`, and `boundary`.
38
+
39
+ If those fields appear in the terminal but not in Claude Desktop, Cursor, or
40
+ another client, the package is likely running and the next thing to check is the
41
+ client config, restart behavior, or command path.
42
+
26
43
  ## Public-Safe Feedback
27
44
 
28
45
  If the output is unclear, open a Tried It feedback issue and include only:
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const serverInfo = { name: 'miraigent-free-ai-ops-mcp', version: '0.1.20' };
3
+ const serverInfo = { name: 'miraigent-free-ai-ops-mcp', version: '0.1.22' };
4
4
 
5
5
  const tools = [
6
6
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miraigent/free-ai-ops-mcp",
3
- "version": "0.1.20",
3
+ "version": "0.1.22",
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",