@miraigent/free-ai-ops-mcp 0.1.37 → 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 +16 -0
- package/README.md +16 -0
- package/examples/mcp-json-rpc-session/README.md +4 -0
- package/package.json +1 -1
- package/scripts/smoke-test.mjs +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
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
|
+
|
|
11
|
+
## [0.1.38] - 2026-07-14
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Added a README tool-call preview so MCP client users can compare the expected
|
|
16
|
+
`human_review_gate` input shape before pasting synthetic data into a desktop
|
|
17
|
+
client or public issue.
|
|
18
|
+
|
|
3
19
|
## [0.1.37] - 2026-07-12
|
|
4
20
|
|
|
5
21
|
### Added
|
package/README.md
CHANGED
|
@@ -106,6 +106,22 @@ After restarting Claude Desktop or Cursor, the four tools
|
|
|
106
106
|
(`human_review_gate`, `faq_candidate_review`, `ai_safe_crm_note`,
|
|
107
107
|
`prompt_risk_review`) will be available in the MCP tools panel.
|
|
108
108
|
|
|
109
|
+
Before connecting a real workflow, try one synthetic `human_review_gate` call in
|
|
110
|
+
your MCP client and compare the input shape with this public example:
|
|
111
|
+
|
|
112
|
+
{
|
|
113
|
+
"draftType": "support reply",
|
|
114
|
+
"audience": "customer",
|
|
115
|
+
"riskFlags": ["refund", "personal data"],
|
|
116
|
+
"reviewOwner": "support lead",
|
|
117
|
+
"sendMode": "manual"
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
For that kind of input, the expected result is `stop` or `review_required`, plus
|
|
121
|
+
a boundary note saying the tool does not send messages. If your client shows a
|
|
122
|
+
different field name or hides the returned status, open a Tried It feedback
|
|
123
|
+
issue with synthetic input only.
|
|
124
|
+
|
|
109
125
|
Claude Desktop config location:
|
|
110
126
|
|
|
111
127
|
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
@@ -20,6 +20,10 @@ From the repository root:
|
|
|
20
20
|
|
|
21
21
|
npm run mcp < examples/mcp-json-rpc-session/sample-session.jsonl
|
|
22
22
|
|
|
23
|
+
From the public npm package:
|
|
24
|
+
|
|
25
|
+
npx -y free-ai-ops-mcp@npm:@miraigent/free-ai-ops-mcp < examples/mcp-json-rpc-session/sample-session.jsonl
|
|
26
|
+
|
|
23
27
|
You should receive three JSON-RPC response lines. The final response should
|
|
24
28
|
include a human_review_gate result with:
|
|
25
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@miraigent/free-ai-ops-mcp",
|
|
3
|
-
"version": "0.1.
|
|
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",
|
package/scripts/smoke-test.mjs
CHANGED
|
@@ -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: {} },
|