@miraigent/free-ai-ops-mcp 0.1.2 → 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,14 @@
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
+
3
12
  ## [0.1.2] - 2026-06-07
4
13
 
5
14
  ### Changed
package/README.md CHANGED
@@ -1,13 +1,39 @@
1
1
  # Miraigent Free AI Ops MCP
2
2
 
3
- Free public Model Context Protocol (MCP) server 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.
7
8
 
8
- Use it when a team wants AI drafts, prompts, FAQ candidates, or CRM notes to go
9
- through a visible human-review gate before they reach customers or shared
10
- systems.
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.
11
37
 
12
38
  ## Alpha Tools
13
39
 
@@ -17,7 +43,9 @@ systems.
17
43
  - prompt_risk_review: review an AI prompt or task before it is used in operations.
18
44
 
19
45
  These tools are public alpha candidates. Please use GitHub issues for bugs,
20
- 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
21
49
 
22
50
  ## Start With One Review Gate
23
51
 
@@ -111,4 +139,6 @@ This repository must not publish:
111
139
  - Resource hub: https://miraigent.com/resources.html
112
140
  - Parent template repository: https://github.com/Miraigent/miraigent-ai-ops-templates
113
141
  - Free template library: https://miraigent.com/en/free-ai-operations-templates.html
114
- - 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.2' };
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@miraigent/free-ai-ops-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
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",
@@ -38,7 +38,11 @@
38
38
  "faq-review",
39
39
  "ai-safety",
40
40
  "crm",
41
- "faq"
41
+ "faq",
42
+ "agent-memory",
43
+ "ai-agent",
44
+ "workflow-automation",
45
+ "review-gate"
42
46
  ],
43
47
  "repository": {
44
48
  "type": "git",