@miraigent/free-ai-ops-mcp 0.1.1 → 0.1.3

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.3] - 2026-06-07
4
+
5
+ ### Changed
6
+
7
+ - Moved the README toward a faster discovery path with a 30-second try step,
8
+ clearer user pain points, issue CTA, and UTM-marked resource links.
9
+ - Added additional npm discovery keywords for agent memory, AI agents, workflow
10
+ automation, and review gates.
11
+
12
+ ## [0.1.2] - 2026-06-07
13
+
14
+ ### Changed
15
+
16
+ - Improved npm discovery metadata with Model Context Protocol, MCP server,
17
+ support automation, prompt risk, and FAQ review keywords.
18
+ - Clarified README positioning and added the live npx command.
19
+
3
20
  ## [0.1.1] - 2026-06-07
4
21
 
5
22
  ### Added
package/README.md CHANGED
@@ -1,9 +1,39 @@
1
1
  # Miraigent Free AI Ops MCP
2
2
 
3
- Free public MCP tools for practical AI operations.
3
+ Free public Model Context Protocol (MCP) server for human-reviewed AI
4
+ operations.
4
5
 
5
- This repository starts with small alpha tools that help teams review AI usage
6
- before they automate customer-facing work.
6
+ Use it when AI drafts, prompts, FAQ candidates, or CRM notes should pass through
7
+ a visible review gate before they reach customers or shared systems.
8
+
9
+ ## Try It In 30 Seconds
10
+
11
+ Run the public MCP server:
12
+
13
+ npx @miraigent/free-ai-ops-mcp
14
+
15
+ Then send a JSON-RPC tool call such as the copy-ready example in
16
+ examples/human-review-gate/.
17
+
18
+ If you only want the spreadsheet/checklist version first, download the free
19
+ review kit:
20
+
21
+ https://miraigent.gumroad.com/l/human-review-gate-ai-drafts?utm_source=github&utm_medium=readme&utm_campaign=free-ai-ops-mcp-013
22
+
23
+ ## Who This Helps
24
+
25
+ - Support teams that want AI drafts but still need human review.
26
+ - Operators who need prompt risk checks before using customer or business data.
27
+ - Teams building FAQs before they automate inquiry replies.
28
+ - Builders who want small MCP examples before connecting real workflows.
29
+
30
+ ## What To Do Next
31
+
32
+ - Try one tool with synthetic data.
33
+ - Open an issue if a risk flag, status, or output field is missing.
34
+ - Use the Gumroad kit when you want CSV/checklist files.
35
+ - Use Agent Memories when repeated review decisions should become reusable
36
+ operating memory.
7
37
 
8
38
  ## Alpha Tools
9
39
 
@@ -13,7 +43,9 @@ before they automate customer-facing work.
13
43
  - prompt_risk_review: review an AI prompt or task before it is used in operations.
14
44
 
15
45
  These tools are public alpha candidates. Please use GitHub issues for bugs,
16
- unclear outputs, missing fields, and safe public use cases.
46
+ unclear outputs, missing fields, and safe public use cases:
47
+
48
+ https://github.com/Miraigent/miraigent-free-ai-ops-mcp/issues/new/choose
17
49
 
18
50
  ## Start With One Review Gate
19
51
 
@@ -60,6 +92,10 @@ routes toward Miraigent and Agent Memories.
60
92
 
61
93
  npm run mcp
62
94
 
95
+ Run from npm:
96
+
97
+ npx @miraigent/free-ai-ops-mcp
98
+
63
99
  Run checks:
64
100
 
65
101
  npm run check
@@ -73,17 +109,14 @@ Run the public FREE-004 example:
73
109
 
74
110
  npm run example:human-review-gate
75
111
 
76
- ## npm Plan
112
+ ## npm Package
77
113
 
78
114
  Package name: @miraigent/free-ai-ops-mcp
79
115
 
80
- Expected command after npm publication:
116
+ Command:
81
117
 
82
118
  npx @miraigent/free-ai-ops-mcp
83
119
 
84
- Publishing requires an authenticated npm account with access to the @miraigent
85
- scope.
86
-
87
120
  ## Public Boundary
88
121
 
89
122
  This repository may publish:
@@ -106,4 +139,6 @@ This repository must not publish:
106
139
  - Resource hub: https://miraigent.com/resources.html
107
140
  - Parent template repository: https://github.com/Miraigent/miraigent-ai-ops-templates
108
141
  - Free template library: https://miraigent.com/en/free-ai-operations-templates.html
109
- - Free Gumroad review kit: https://miraigent.gumroad.com/l/human-review-gate-ai-drafts
142
+ - Agent Memories MCP catalog: https://github.com/Miraigent/Miraigent-agent-memories-mcp-catalog?utm_source=github&utm_medium=readme&utm_campaign=free-ai-ops-mcp-013
143
+ - Agent Memories: https://agentmemories.jp/?utm_source=github&utm_medium=readme&utm_campaign=free-ai-ops-mcp-013
144
+ - Free Gumroad review kit: https://miraigent.gumroad.com/l/human-review-gate-ai-drafts?utm_source=github&utm_medium=readme&utm_campaign=free-ai-ops-mcp-013
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const serverInfo = { name: 'miraigent-free-ai-ops-mcp', version: '0.1.1' };
3
+ const serverInfo = { name: 'miraigent-free-ai-ops-mcp', version: '0.1.3' };
4
4
 
5
5
  const tools = [
6
6
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@miraigent/free-ai-ops-mcp",
3
- "version": "0.1.1",
4
- "description": "Free MCP tools for human-reviewed AI operations.",
3
+ "version": "0.1.3",
4
+ "description": "Free Model Context Protocol MCP server for human review gates, prompt risk checks, FAQ review, and AI support operations.",
5
5
  "homepage": "https://github.com/Miraigent/miraigent-free-ai-ops-mcp",
6
6
  "type": "module",
7
7
  "private": false,
@@ -28,11 +28,21 @@
28
28
  },
29
29
  "keywords": [
30
30
  "mcp",
31
+ "mcp-server",
32
+ "model-context-protocol",
31
33
  "ai-operations",
32
34
  "human-review",
35
+ "support-automation",
36
+ "customer-support",
37
+ "prompt-risk",
38
+ "faq-review",
33
39
  "ai-safety",
34
40
  "crm",
35
- "faq"
41
+ "faq",
42
+ "agent-memory",
43
+ "ai-agent",
44
+ "workflow-automation",
45
+ "review-gate"
36
46
  ],
37
47
  "repository": {
38
48
  "type": "git",