@miraigent/free-ai-ops-mcp 0.1.2 → 0.1.4

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,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.4] - 2026-06-07
4
+
5
+ ### Changed
6
+
7
+ - Repositioned the npm package toward developers, indie hackers, MCP builders,
8
+ and AI automation builders instead of general creator/audience messaging.
9
+ - Removed Agent Memories consumer links from the npm README so the channel
10
+ matches npm users.
11
+ - Updated npm metadata to emphasize human-in-the-loop developer tooling.
12
+
13
+ ## [0.1.3] - 2026-06-07
14
+
15
+ ### Changed
16
+
17
+ - Moved the README toward a faster discovery path with a 30-second try step,
18
+ clearer user pain points, issue CTA, and UTM-marked resource links.
19
+ - Added additional npm discovery keywords for agent memory, AI agents, workflow
20
+ automation, and review gates.
21
+
3
22
  ## [0.1.2] - 2026-06-07
4
23
 
5
24
  ### Changed
package/README.md CHANGED
@@ -1,13 +1,40 @@
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 you are building an AI tool, MCP server, support workflow, or
7
+ internal automation that needs a visible human-review gate before AI output
8
+ reaches customers or shared systems.
7
9
 
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.
10
+ ## Try It In 30 Seconds
11
+
12
+ Run the public MCP server:
13
+
14
+ npx @miraigent/free-ai-ops-mcp
15
+
16
+ Then send a JSON-RPC tool call such as the copy-ready example in
17
+ examples/human-review-gate/.
18
+
19
+ If you are not a developer and only want the spreadsheet/checklist version
20
+ first, download the free review kit:
21
+
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
+
24
+ ## Who This Helps
25
+
26
+ - Developers adding review gates to AI agents or MCP tools.
27
+ - Indie hackers building support, FAQ, CRM, or prompt-review utilities.
28
+ - AI automation builders who need a safe stop/review/approve step.
29
+ - Teams prototyping human-in-the-loop AI workflows before integrating real data.
30
+ - Operators who can run npm/npx and want a small public MCP example.
31
+
32
+ ## What To Do Next
33
+
34
+ - Try one tool with synthetic data.
35
+ - Open an issue if a risk flag, status, or output field is missing.
36
+ - Use the Gumroad kit only if you want CSV/checklist files instead of npm.
37
+ - Adapt the review-gate fields before connecting private systems or real users.
11
38
 
12
39
  ## Alpha Tools
13
40
 
@@ -17,7 +44,9 @@ systems.
17
44
  - prompt_risk_review: review an AI prompt or task before it is used in operations.
18
45
 
19
46
  These tools are public alpha candidates. Please use GitHub issues for bugs,
20
- unclear outputs, missing fields, and safe public use cases.
47
+ unclear outputs, missing fields, and safe public use cases:
48
+
49
+ https://github.com/Miraigent/miraigent-free-ai-ops-mcp/issues/new/choose
21
50
 
22
51
  ## Start With One Review Gate
23
52
 
@@ -111,4 +140,4 @@ This repository must not publish:
111
140
  - Resource hub: https://miraigent.com/resources.html
112
141
  - Parent template repository: https://github.com/Miraigent/miraigent-ai-ops-templates
113
142
  - 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
143
+ - 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.4' };
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.2",
4
- "description": "Free Model Context Protocol MCP server for human review gates, prompt risk checks, FAQ review, and AI support operations.",
3
+ "version": "0.1.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",
7
7
  "private": false,
@@ -38,7 +38,12 @@
38
38
  "faq-review",
39
39
  "ai-safety",
40
40
  "crm",
41
- "faq"
41
+ "faq",
42
+ "ai-agent",
43
+ "workflow-automation",
44
+ "review-gate",
45
+ "human-in-the-loop",
46
+ "developer-tools"
42
47
  ],
43
48
  "repository": {
44
49
  "type": "git",