@miraigent/free-ai-ops-mcp 0.1.8 → 0.1.10

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.10] - 2026-06-14
4
+
5
+ ### Changed
6
+
7
+ - Added a README tool picker so npm/GitHub visitors can choose the first MCP
8
+ tool by workflow risk before opening issues or integrating the package.
9
+
10
+ ## [0.1.9] - 2026-06-13
11
+
12
+ ### Added
13
+
14
+ - Added a copy-ready JSON-RPC MCP session example so developers can verify
15
+ initialize, tools/list, and a human_review_gate call before integrating with a
16
+ desktop MCP client.
17
+ - Added README guidance for using the session example as a public-safe smoke
18
+ test when opening GitHub issues.
19
+
3
20
  ## [0.1.8] - 2026-06-12
4
21
 
5
22
  ### Added
package/README.md CHANGED
@@ -16,6 +16,9 @@ Run the public MCP server:
16
16
  Then send a JSON-RPC tool call such as the copy-ready example in
17
17
  examples/human-review-gate/.
18
18
 
19
+ For a complete public-safe MCP session that covers initialize, tools/list, and
20
+ one tool call, see examples/mcp-json-rpc-session/.
21
+
19
22
  If you are not a developer and only want the spreadsheet/checklist version
20
23
  first, download the free review kit:
21
24
 
@@ -51,6 +54,20 @@ Claude Desktop config location:
51
54
  - Teams prototyping human-in-the-loop AI workflows before integrating real data.
52
55
  - Operators who can run npm/npx and want a small public MCP example.
53
56
 
57
+ ## Pick Your First Tool
58
+
59
+ Start with the tool that matches the first unsafe handoff in your workflow:
60
+
61
+ - AI draft may reach a customer: use `human_review_gate`.
62
+ - Repeated support questions should become a public FAQ: use
63
+ `faq_candidate_review`.
64
+ - CRM notes mix facts, AI suggestions, and human decisions: use
65
+ `ai_safe_crm_note`.
66
+ - A prompt may touch customer data or public output: use `prompt_risk_review`.
67
+
68
+ All examples use synthetic data. Keep private customer records, secrets,
69
+ internal policy text, and paid product files out of public issues and screenshots.
70
+
54
71
  ## What To Do Next
55
72
 
56
73
  - Try one tool with synthetic data.
@@ -114,6 +131,23 @@ Use this as a small public proof before building a larger AI support workflow.
114
131
  See examples/human-review-gate/ for copy-ready JSON-RPC examples and a sample
115
132
  decision log that match the free Gumroad kit.
116
133
 
134
+ ## Copy-Ready MCP Session
135
+
136
+ Use this when you want to confirm the package responds like an MCP server before
137
+ connecting it to Claude Desktop, Cursor, or your own MCP client:
138
+
139
+ npm run mcp < examples/mcp-json-rpc-session/sample-session.jsonl
140
+
141
+ The session sends three JSON-RPC messages:
142
+
143
+ - initialize: confirms protocolVersion, capabilities, and serverInfo.
144
+ - tools/list: confirms the four public alpha tools are visible.
145
+ - tools/call: runs human_review_gate with synthetic support-reply data.
146
+
147
+ If you open a GitHub issue, copy only synthetic input shapes and returned status
148
+ fields. Do not paste private customer records, secrets, tokens, internal policy
149
+ text, or MIRAI Memory behavior.
150
+
117
151
  ## Check A Prompt Before AI Use
118
152
 
119
153
  Use prompt_risk_review before a support, CRM, FAQ, or workflow prompt is sent to
@@ -0,0 +1,35 @@
1
+ # MCP JSON-RPC Session Example
2
+
3
+ This example gives developers a copy-ready MCP session for the public
4
+ @miraigent/free-ai-ops-mcp package.
5
+
6
+ Use it before wiring the package into Claude Desktop, Cursor, or a custom MCP
7
+ client. It verifies that the server responds to:
8
+
9
+ - initialize
10
+ - tools/list
11
+ - tools/call for human_review_gate
12
+
13
+ ## Run
14
+
15
+ From the repository root:
16
+
17
+ npm run mcp < examples/mcp-json-rpc-session/sample-session.jsonl
18
+
19
+ You should receive three JSON-RPC response lines. The final response should
20
+ include a human_review_gate result with:
21
+
22
+ - gateStatus: stop
23
+ - reviewOwner: support lead
24
+ - boundary: this tool is a review helper and does not send messages
25
+
26
+ ## Public-Safe Feedback
27
+
28
+ If the output is unclear, open a Tried It feedback issue and include only:
29
+
30
+ - which command you ran
31
+ - the public-safe input shape
32
+ - the returned status or field that was unclear
33
+
34
+ Do not include secrets, credentials, private customer records, internal policy
35
+ text, or MIRAI Memory behavior.
@@ -0,0 +1,3 @@
1
+ {"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}
2
+ {"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}
3
+ {"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"human_review_gate","arguments":{"draftType":"customer support reply","audience":"customer","riskFlags":["refund","complaint","personal data"],"reviewOwner":"support lead","sendMode":"manual"}}}
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const serverInfo = { name: 'miraigent-free-ai-ops-mcp', version: '0.1.8' };
3
+ const serverInfo = { name: 'miraigent-free-ai-ops-mcp', version: '0.1.10' };
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.8",
3
+ "version": "0.1.10",
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",