@miraigent/free-ai-ops-mcp 0.1.41 → 0.1.42
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 +4 -1
- package/package.json +1 -1
- package/scripts/smoke-test.mjs +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.42] - 2026-07-18
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Clarified that the public help header prints the package version and added
|
|
8
|
+
smoke-test coverage for that header so npm users can spot stale `npx` cache
|
|
9
|
+
behavior before editing MCP client configuration.
|
|
10
|
+
|
|
3
11
|
## [0.1.41] - 2026-07-17
|
|
4
12
|
|
|
5
13
|
### Changed
|
package/README.md
CHANGED
|
@@ -53,7 +53,10 @@ If you are checking the package from npm search, run the public help first:
|
|
|
53
53
|
npx -y free-ai-ops-mcp@npm:@miraigent/free-ai-ops-mcp --help
|
|
54
54
|
|
|
55
55
|
The help output lists the available MCP tools, the one-command smoke test, and
|
|
56
|
-
the public-safe boundary before you send any JSON-RPC input.
|
|
56
|
+
the public-safe boundary before you send any JSON-RPC input. The first line
|
|
57
|
+
also prints `Miraigent Free AI Ops MCP <version>`, which is the quickest way to
|
|
58
|
+
confirm whether `npx` is using the current public package or a stale local
|
|
59
|
+
cache.
|
|
57
60
|
|
|
58
61
|
If a local npx cache or desktop MCP client appears stale, compare it with the
|
|
59
62
|
public registry version before changing private client configuration:
|
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.42",
|
|
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",
|
package/scripts/smoke-test.mjs
CHANGED
|
@@ -22,6 +22,7 @@ await new Promise((resolve, reject) => {
|
|
|
22
22
|
});
|
|
23
23
|
|
|
24
24
|
assert.match(helpStdout, /npx -y free-ai-ops-mcp@npm:@miraigent\/free-ai-ops-mcp/);
|
|
25
|
+
assert.match(helpStdout, new RegExp(`Miraigent Free AI Ops MCP ${packageJson.version.replaceAll('.', '\\.')}`));
|
|
25
26
|
assert.match(helpStdout, /human_review_gate/);
|
|
26
27
|
assert.match(helpStdout, /Do not paste secrets/);
|
|
27
28
|
assert.match(helpStdout, /private memory behavior/);
|