@miraigent/free-ai-ops-mcp 0.1.5 → 0.1.7
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 +20 -0
- package/README.md +31 -1
- package/mcp/free-ai-ops-server.mjs +1 -1
- package/package.json +7 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.7] - 2026-06-10
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Added Claude Desktop and Cursor MCP configuration example to README so
|
|
8
|
+
developers can copy-paste the mcpServers block directly.
|
|
9
|
+
- Added npm keywords: claude-desktop, cursor-mcp, mcp-tools, ai-agent-tools, npx.
|
|
10
|
+
|
|
11
|
+
## [0.1.6] - 2026-06-08
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Added a Tried It feedback issue template for users who run the MCP package and
|
|
16
|
+
want to report setup friction, unclear JSON-RPC input, or confusing output.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Added direct README links for Tried It feedback, workflow requests, and bug
|
|
21
|
+
reports so GitHub visitors have a clearer next action after running npx.
|
|
22
|
+
|
|
3
23
|
## [0.1.5] - 2026-06-07
|
|
4
24
|
|
|
5
25
|
### Changed
|
package/README.md
CHANGED
|
@@ -21,6 +21,28 @@ first, download the free review kit:
|
|
|
21
21
|
|
|
22
22
|
https://miraigent.gumroad.com/l/human-review-gate-ai-drafts?utm_source=github&utm_medium=readme&utm_campaign=free-ai-ops-mcp-013
|
|
23
23
|
|
|
24
|
+
## Use With Claude Desktop or Cursor
|
|
25
|
+
|
|
26
|
+
Add to your `claude_desktop_config.json` or Cursor MCP settings:
|
|
27
|
+
|
|
28
|
+
{
|
|
29
|
+
"mcpServers": {
|
|
30
|
+
"miraigent-free-ai-ops-mcp": {
|
|
31
|
+
"command": "npx",
|
|
32
|
+
"args": ["-y", "@miraigent/free-ai-ops-mcp"]
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
After restarting Claude Desktop or Cursor, the four tools
|
|
38
|
+
(`human_review_gate`, `faq_candidate_review`, `ai_safe_crm_note`,
|
|
39
|
+
`prompt_risk_review`) will be available in the MCP tools panel.
|
|
40
|
+
|
|
41
|
+
Claude Desktop config location:
|
|
42
|
+
|
|
43
|
+
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
44
|
+
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
|
45
|
+
|
|
24
46
|
## Who This Helps
|
|
25
47
|
|
|
26
48
|
- Developers adding review gates to AI agents or MCP tools.
|
|
@@ -32,10 +54,18 @@ https://miraigent.gumroad.com/l/human-review-gate-ai-drafts?utm_source=github&ut
|
|
|
32
54
|
## What To Do Next
|
|
33
55
|
|
|
34
56
|
- Try one tool with synthetic data.
|
|
35
|
-
-
|
|
57
|
+
- Share what happened in the Tried It feedback issue if setup, JSON-RPC input,
|
|
58
|
+
or the returned gate decision was unclear.
|
|
59
|
+
- Open a workflow request if a risk flag, status, or output field is missing.
|
|
36
60
|
- Use the Gumroad kit only if you want CSV/checklist files instead of npm.
|
|
37
61
|
- Adapt the review-gate fields before connecting private systems or real users.
|
|
38
62
|
|
|
63
|
+
Issue entry points:
|
|
64
|
+
|
|
65
|
+
- Tried It feedback: https://github.com/Miraigent/miraigent-free-ai-ops-mcp/issues/new?template=tried_it_feedback.md
|
|
66
|
+
- Workflow request: https://github.com/Miraigent/miraigent-free-ai-ops-mcp/issues/new?template=free_mcp_candidate_request.md
|
|
67
|
+
- Bug report: https://github.com/Miraigent/miraigent-free-ai-ops-mcp/issues/new?template=free_mcp_bug_report.md
|
|
68
|
+
|
|
39
69
|
## Alpha Tools
|
|
40
70
|
|
|
41
71
|
- human_review_gate: decide whether an AI draft should be sent, reviewed, or stopped.
|
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.7",
|
|
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",
|
|
@@ -43,7 +43,12 @@
|
|
|
43
43
|
"workflow-automation",
|
|
44
44
|
"review-gate",
|
|
45
45
|
"human-in-the-loop",
|
|
46
|
-
"developer-tools"
|
|
46
|
+
"developer-tools",
|
|
47
|
+
"claude-desktop",
|
|
48
|
+
"cursor-mcp",
|
|
49
|
+
"mcp-tools",
|
|
50
|
+
"ai-agent-tools",
|
|
51
|
+
"npx"
|
|
47
52
|
],
|
|
48
53
|
"repository": {
|
|
49
54
|
"type": "git",
|