@miraigent/free-ai-ops-mcp 0.1.6 → 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 +8 -0
- package/README.md +22 -0
- package/mcp/free-ai-ops-server.mjs +1 -1
- package/package.json +7 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
3
11
|
## [0.1.6] - 2026-06-08
|
|
4
12
|
|
|
5
13
|
### Added
|
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.
|
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",
|