@miraigent/free-ai-ops-mcp 0.1.13 → 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 +9 -0
- package/README.md +18 -0
- package/mcp/free-ai-ops-server.mjs +1 -1
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
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
|
+
|
|
3
12
|
## [0.1.13] - 2026-06-17
|
|
4
13
|
|
|
5
14
|
### 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
|
|
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",
|