@miraigent/free-ai-ops-mcp 0.1.13 → 0.1.15

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 CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.15] - 2026-06-18
4
+
5
+ ### Fixed
6
+
7
+ - Added a shorter `free-ai-ops-mcp` bin alias while keeping the existing
8
+ `miraigent-free-ai-ops-mcp` command so scoped npm/npx users have a more
9
+ reliable explicit command path.
10
+
11
+ ## [0.1.14] - 2026-06-18
12
+
13
+ ### Changed
14
+
15
+ - Added a one-command npx smoke-test path to README so npm and GitHub visitors
16
+ can verify the public MCP JSON-RPC session before editing desktop client
17
+ settings.
18
+ - Added npm discovery keywords for JSON-RPC and MCP JSON-RPC searches.
19
+
3
20
  ## [0.1.13] - 2026-06-17
4
21
 
5
22
  ### Changed
package/README.md CHANGED
@@ -19,6 +19,27 @@ 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
+
40
+ The package also exposes `free-ai-ops-mcp` and `miraigent-free-ai-ops-mcp` as
41
+ bin aliases for npm exec environments that require an explicit command name.
42
+
22
43
  If the result is unclear, open a Tried It feedback issue with synthetic input
23
44
  only. A useful issue can be as small as:
24
45
 
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const serverInfo = { name: 'miraigent-free-ai-ops-mcp', version: '0.1.13' };
3
+ const serverInfo = { name: 'miraigent-free-ai-ops-mcp', version: '0.1.15' };
4
4
 
5
5
  const tools = [
6
6
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miraigent/free-ai-ops-mcp",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
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",
@@ -18,6 +18,7 @@
18
18
  "scripts/"
19
19
  ],
20
20
  "bin": {
21
+ "free-ai-ops-mcp": "mcp/free-ai-ops-server.mjs",
21
22
  "miraigent-free-ai-ops-mcp": "mcp/free-ai-ops-server.mjs"
22
23
  },
23
24
  "scripts": {
@@ -50,7 +51,9 @@
50
51
  "cursor-mcp",
51
52
  "mcp-tools",
52
53
  "ai-agent-tools",
53
- "npx"
54
+ "npx",
55
+ "json-rpc",
56
+ "mcp-json-rpc"
54
57
  ],
55
58
  "repository": {
56
59
  "type": "git",