@miraigent/free-ai-ops-mcp 0.1.11 → 0.1.12
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 +8 -0
- package/README.md +20 -0
- package/mcp/free-ai-ops-server.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.12] - 2026-06-16
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Added a README success-check section so first-time npm/npx and GitHub users
|
|
8
|
+
can verify the MCP server, visible tools, and returned gate statuses before
|
|
9
|
+
opening feedback issues or connecting private workflows.
|
|
10
|
+
|
|
3
11
|
## [0.1.11] - 2026-06-15
|
|
4
12
|
|
|
5
13
|
### Added
|
package/README.md
CHANGED
|
@@ -55,6 +55,26 @@ Claude Desktop config location:
|
|
|
55
55
|
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
56
56
|
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
|
57
57
|
|
|
58
|
+
## What Success Looks Like
|
|
59
|
+
|
|
60
|
+
Use this quick check before connecting private systems or opening an issue:
|
|
61
|
+
|
|
62
|
+
- The MCP client starts `miraigent-free-ai-ops-mcp` without credentials.
|
|
63
|
+
- `tools/list` shows four public alpha tools:
|
|
64
|
+
`human_review_gate`, `faq_candidate_review`, `ai_safe_crm_note`, and
|
|
65
|
+
`prompt_risk_review`.
|
|
66
|
+
- A support-reply review returns one of `auto_ok`, `review_required`, or
|
|
67
|
+
`stop`, plus a `boundary` note that confirms the package does not send
|
|
68
|
+
messages.
|
|
69
|
+
- A prompt review returns `proceed_with_checklist`,
|
|
70
|
+
`human_review_required`, or `stop_before_ai_use` before any real customer
|
|
71
|
+
data is used.
|
|
72
|
+
|
|
73
|
+
If one of those checks fails, open a Tried It feedback issue with the command
|
|
74
|
+
you ran, the public-safe input shape, and the returned status field. Do not
|
|
75
|
+
paste private customer records, secrets, internal policy text, or paid product
|
|
76
|
+
files.
|
|
77
|
+
|
|
58
78
|
## Who This Helps
|
|
59
79
|
|
|
60
80
|
- 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.12",
|
|
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",
|