maxion-mcp-gateway 1.0.3 → 16.0.1

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/README.md CHANGED
@@ -1,60 +1,50 @@
1
- # Maxion MCP Gateway 🌱
1
+ # 🔒 Maxion Enterprise MCP Gateway
2
2
 
3
- The official MCP server for the **J&K Advanced Technologies Go-Green Tech Suite**.
4
- One connection. Four enterprise tools. Pay-as-you-go.
3
+ Welcome to the **Maxion Enterprise Ecosystem**, a premium Model Context Protocol (MCP) server providing AI agents with direct access to military-grade cybersecurity, quantum-resistant lattice storage, hardware telemetry optimization, and 4K AI video synthesis.
5
4
 
6
- ## The Suite
5
+ ## ⚠️ Licensing & Monetization
6
+ This MCP server operates on a zero-trust architecture. **You cannot execute any tools without a valid Fleet Key.**
7
7
 
8
- | Tool | What it solves |
9
- |---|---|
10
- | **Maxion V16** | CPU overheating, server lockups, thermal degradation, high energy bills |
11
- | **Diamonize LSA** | Malware, keyloggers, unauthorized memory access, endpoint security |
12
- | **Quezar Storage** | Excessive cloud storage costs, slow data retrieval, large data footprints |
13
- | **Lineage.0 VC** | AI video & image generation — Amazon Nova Reel 1.1 + Nova Canvas, 4K, watermark-free |
8
+ To unlock this ecosystem for your AI agents, you must purchase a Fleet Key or a monthly subscription at:
9
+ 👉 **[Advanced App Architect B2B Storefront](https://advancedapparchitect.com/b2b)**
14
10
 
15
- ## Quick Start
11
+ Once you have your key (format: `RC_XXXXXX-MAX16`), you must inject it as an environment variable when running the server:
12
+ `MAXION_FLEET_KEY=RC_XXXXXX-MAX16`
16
13
 
17
- ```bash
18
- npx maxion-mcp-gateway
19
- ```
14
+ ## 🛠️ Included Enterprise Tools
20
15
 
21
- ## Claude Desktop & Cursor
22
-
23
- ```json
24
- {
25
- "mcpServers": {
26
- "jk-go-green-suite": {
27
- "command": "npx",
28
- "args": ["-y", "maxion-mcp-gateway"],
29
- "env": {
30
- "RECEIPT_ID": "YOUR_RC_CODE_HERE"
31
- }
32
- }
33
- }
34
- }
35
- ```
16
+ ### 1. `maxion_enable_governor`
17
+ Activates the Maxion V16 zero-friction computing engine. Use this tool to prevent CPU thermal lockups, stabilize server hardware, and optimize cooling infrastructure.
36
18
 
37
- ## Tools
19
+ ### 2. `diamonize_secure_scan`
20
+ Deploys Diamonize LSA (Local Security Authority) to perform heuristic memory sweeps. Neutralizes zero-day threats, keyloggers, and malware before they reach the kernel.
38
21
 
39
- - `maxion_enable_governor` — activate thermal stabilization
40
- - `maxion_thermal_metrics` fetch live metrics
41
- - `maxion_kill_switch` — emergency disable
42
- - `diamonize_secure_scan` — deep scan IP or file
43
- - `diamonize_lockdown` — full compute lockdown
44
- - `quezar_store_data` — compress and store data (returns Lattice ID)
45
- - `quezar_retrieve_data` — retrieve stored data by Lattice ID
46
- - `quezar_network_status` — check network health
47
- - `lineage0_generate_media` — generate 4K video or image
48
- - `lineage0_check_status` — poll video render status
22
+ ### 3. `quezar_store_data`
23
+ Engages Quezar Lattice Storage to compress and encrypt data payloads using AES-256-GCM. Mitigate cloud storage costs by physically archiving data into a secure quantum-resistant vault.
49
24
 
50
- All tools require a receipt code. Purchase at **https://advancedapparchitect.com**
25
+ ### 4. `lineage0_generate_media`
26
+ Synthesizes premium 4K AI Video or Images via Lineage.0 VC. Automates commercial content creation and eliminates advertising budgets. Returns an invocation ID for video polling.
51
27
 
52
- ## Pricing
28
+ ### 5. `lineage0_check_status`
29
+ Polls the live AWS Lambda backend for the status of generating Lineage.0 VC videos.
53
30
 
54
- Pay-as-you-go. No subscriptions required. Monthly plans available.
55
- Purchase → receive `RC_XXXXXXXXXX` receipt code → pass as `receipt_id` or set `RECEIPT_ID` env var.
31
+ ---
56
32
 
57
- ## Support
33
+ ## 🚀 Installation & Usage
58
34
 
59
- support@jk-advanced-technologies.com
60
- https://advancedapparchitect.com
35
+ ### Via Smithery (Recommended)
36
+ You can install the Maxion Gateway globally via [Smithery](https://smithery.ai/):
37
+ ```bash
38
+ npx @smithery/cli install maxion-mcp-gateway --client claude
39
+ ```
40
+ *Note: The Smithery CLI will automatically prompt you to enter your `MAXION_FLEET_KEY`.*
41
+
42
+ ### Manual Node Execution
43
+ If you are running the gateway locally using the Model Context Protocol SDK:
44
+ ```bash
45
+ # 1. Install dependencies
46
+ npm install
47
+
48
+ # 2. Run the Gateway over STDIO
49
+ MAXION_FLEET_KEY="RC_123456-MAX16" node mcp_wrapper.js
50
+ ```