@miraigent/free-ai-ops-mcp 0.1.1 → 0.1.2
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 +11 -6
- package/mcp/free-ai-ops-server.mjs +1 -1
- package/package.json +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.2] - 2026-06-07
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Improved npm discovery metadata with Model Context Protocol, MCP server,
|
|
8
|
+
support automation, prompt risk, and FAQ review keywords.
|
|
9
|
+
- Clarified README positioning and added the live npx command.
|
|
10
|
+
|
|
3
11
|
## [0.1.1] - 2026-06-07
|
|
4
12
|
|
|
5
13
|
### Added
|
package/README.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
# Miraigent Free AI Ops MCP
|
|
2
2
|
|
|
3
|
-
Free public MCP
|
|
3
|
+
Free public Model Context Protocol (MCP) server for practical AI operations.
|
|
4
4
|
|
|
5
5
|
This repository starts with small alpha tools that help teams review AI usage
|
|
6
6
|
before they automate customer-facing work.
|
|
7
7
|
|
|
8
|
+
Use it when a team wants AI drafts, prompts, FAQ candidates, or CRM notes to go
|
|
9
|
+
through a visible human-review gate before they reach customers or shared
|
|
10
|
+
systems.
|
|
11
|
+
|
|
8
12
|
## Alpha Tools
|
|
9
13
|
|
|
10
14
|
- human_review_gate: decide whether an AI draft should be sent, reviewed, or stopped.
|
|
@@ -60,6 +64,10 @@ routes toward Miraigent and Agent Memories.
|
|
|
60
64
|
|
|
61
65
|
npm run mcp
|
|
62
66
|
|
|
67
|
+
Run from npm:
|
|
68
|
+
|
|
69
|
+
npx @miraigent/free-ai-ops-mcp
|
|
70
|
+
|
|
63
71
|
Run checks:
|
|
64
72
|
|
|
65
73
|
npm run check
|
|
@@ -73,17 +81,14 @@ Run the public FREE-004 example:
|
|
|
73
81
|
|
|
74
82
|
npm run example:human-review-gate
|
|
75
83
|
|
|
76
|
-
## npm
|
|
84
|
+
## npm Package
|
|
77
85
|
|
|
78
86
|
Package name: @miraigent/free-ai-ops-mcp
|
|
79
87
|
|
|
80
|
-
|
|
88
|
+
Command:
|
|
81
89
|
|
|
82
90
|
npx @miraigent/free-ai-ops-mcp
|
|
83
91
|
|
|
84
|
-
Publishing requires an authenticated npm account with access to the @miraigent
|
|
85
|
-
scope.
|
|
86
|
-
|
|
87
92
|
## Public Boundary
|
|
88
93
|
|
|
89
94
|
This repository may publish:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@miraigent/free-ai-ops-mcp",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Free MCP
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Free Model Context Protocol MCP server for human review gates, prompt risk checks, FAQ review, and AI support operations.",
|
|
5
5
|
"homepage": "https://github.com/Miraigent/miraigent-free-ai-ops-mcp",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"private": false,
|
|
@@ -28,8 +28,14 @@
|
|
|
28
28
|
},
|
|
29
29
|
"keywords": [
|
|
30
30
|
"mcp",
|
|
31
|
+
"mcp-server",
|
|
32
|
+
"model-context-protocol",
|
|
31
33
|
"ai-operations",
|
|
32
34
|
"human-review",
|
|
35
|
+
"support-automation",
|
|
36
|
+
"customer-support",
|
|
37
|
+
"prompt-risk",
|
|
38
|
+
"faq-review",
|
|
33
39
|
"ai-safety",
|
|
34
40
|
"crm",
|
|
35
41
|
"faq"
|