@miraigent/free-ai-ops-mcp 0.1.12 → 0.1.14
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 +17 -0
- package/README.md +39 -0
- package/mcp/free-ai-ops-server.mjs +1 -1
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.14] - 2026-06-18
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Added a one-command npx smoke-test path to README so npm and GitHub visitors
|
|
8
|
+
can verify the public MCP JSON-RPC session before editing desktop client
|
|
9
|
+
settings.
|
|
10
|
+
- Added npm discovery keywords for JSON-RPC and MCP JSON-RPC searches.
|
|
11
|
+
|
|
12
|
+
## [0.1.13] - 2026-06-17
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Added a README feedback-result example so developers who try the npx package
|
|
17
|
+
can open safer, more actionable GitHub issues with synthetic input shapes and
|
|
18
|
+
returned status fields.
|
|
19
|
+
|
|
3
20
|
## [0.1.12] - 2026-06-16
|
|
4
21
|
|
|
5
22
|
### Changed
|
package/README.md
CHANGED
|
@@ -19,6 +19,24 @@ examples/human-review-gate/.
|
|
|
19
19
|
For a complete public-safe MCP session that covers initialize, tools/list, and
|
|
20
20
|
one tool call, see examples/mcp-json-rpc-session/.
|
|
21
21
|
|
|
22
|
+
## One-Command Public Smoke Test
|
|
23
|
+
|
|
24
|
+
Use this when you want to confirm the npm package works before editing a desktop
|
|
25
|
+
MCP client config:
|
|
26
|
+
|
|
27
|
+
npx -y @miraigent/free-ai-ops-mcp < examples/mcp-json-rpc-session/sample-session.jsonl
|
|
28
|
+
|
|
29
|
+
The response should include:
|
|
30
|
+
|
|
31
|
+
- serverInfo.name: miraigent-free-ai-ops-mcp
|
|
32
|
+
- tools/list with four tools
|
|
33
|
+
- human_review_gate returning `stop` for the synthetic refund/complaint/personal
|
|
34
|
+
data example
|
|
35
|
+
|
|
36
|
+
This is the fastest public proof path for npm and GitHub users. If the command
|
|
37
|
+
starts but the returned status is confusing, open a Tried It feedback issue with
|
|
38
|
+
the command, synthetic input shape, and returned status only.
|
|
39
|
+
|
|
22
40
|
If the result is unclear, open a Tried It feedback issue with synthetic input
|
|
23
41
|
only. A useful issue can be as small as:
|
|
24
42
|
|
|
@@ -75,6 +93,27 @@ you ran, the public-safe input shape, and the returned status field. Do not
|
|
|
75
93
|
paste private customer records, secrets, internal policy text, or paid product
|
|
76
94
|
files.
|
|
77
95
|
|
|
96
|
+
## Copy A Useful Feedback Result
|
|
97
|
+
|
|
98
|
+
When you open a Tried It feedback issue, the most useful report is the smallest
|
|
99
|
+
public-safe result shape that shows where the review gate helped or felt unclear.
|
|
100
|
+
|
|
101
|
+
Good public-safe issue body:
|
|
102
|
+
|
|
103
|
+
Command: npx @miraigent/free-ai-ops-mcp
|
|
104
|
+
Tool: human_review_gate
|
|
105
|
+
Input shape:
|
|
106
|
+
draftType: customer support reply
|
|
107
|
+
audience: customer
|
|
108
|
+
riskFlags: refund; complaint; personal data
|
|
109
|
+
sendMode: manual
|
|
110
|
+
Returned status: stop
|
|
111
|
+
Confusing part: I expected review_required, but stop may be correct because refund and personal data were both present.
|
|
112
|
+
Requested improvement: Add one sentence explaining why stop is stronger than review_required.
|
|
113
|
+
|
|
114
|
+
Keep the report synthetic. Replace names, emails, customer text, internal policy
|
|
115
|
+
text, and private CRM notes with short labels before posting.
|
|
116
|
+
|
|
78
117
|
## Who This Helps
|
|
79
118
|
|
|
80
119
|
- Developers adding review gates to AI agents or MCP tools.
|
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.14",
|
|
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",
|
|
@@ -50,7 +50,9 @@
|
|
|
50
50
|
"cursor-mcp",
|
|
51
51
|
"mcp-tools",
|
|
52
52
|
"ai-agent-tools",
|
|
53
|
-
"npx"
|
|
53
|
+
"npx",
|
|
54
|
+
"json-rpc",
|
|
55
|
+
"mcp-json-rpc"
|
|
54
56
|
],
|
|
55
57
|
"repository": {
|
|
56
58
|
"type": "git",
|