maxion-mcp-gateway 1.0.3 → 16.0.2
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 +37 -47
- package/mcp_wrapper.js +368 -195
- package/package.json +24 -21
- package/smithery.yaml +13 -31
- package/.well-known/mcp/server-card.json +0 -28
- package/logger.js +0 -62
- package/src/auth_gatekeeper.js +0 -4
- package/src/dashboard.html +0 -117
- package/src/dashboard_server.js +0 -430
- package/src/quezar/maxion-core/target/release/deps/maxion_core.exe +0 -0
- package/src/quezar/maxion-core/target/release/maxion-core.exe +0 -0
package/README.md
CHANGED
|
@@ -1,60 +1,50 @@
|
|
|
1
|
-
# Maxion MCP Gateway
|
|
1
|
+
# 🔒 Maxion Enterprise MCP Gateway
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
##
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
18
|
-
npx maxion-mcp-gateway
|
|
19
|
-
```
|
|
14
|
+
## 🛠️ Included Enterprise Tools
|
|
20
15
|
|
|
21
|
-
|
|
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
|
-
|
|
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
|
-
|
|
40
|
-
-
|
|
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
|
-
|
|
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
|
-
|
|
28
|
+
### 5. `lineage0_check_status`
|
|
29
|
+
Polls the live AWS Lambda backend for the status of generating Lineage.0 VC videos.
|
|
53
30
|
|
|
54
|
-
|
|
55
|
-
Purchase → receive `RC_XXXXXXXXXX` receipt code → pass as `receipt_id` or set `RECEIPT_ID` env var.
|
|
31
|
+
---
|
|
56
32
|
|
|
57
|
-
##
|
|
33
|
+
## 🚀 Installation & Usage
|
|
58
34
|
|
|
59
|
-
|
|
60
|
-
https://
|
|
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
|
+
```
|