@h0wzy/mcp 1.0.0 → 1.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 +72 -0
- package/package.json +13 -1
package/README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# 🚀 @h0wzy/mcp — The Ultimate Multi-Agent MCP Hub & Go CLI
|
|
2
|
+
|
|
3
|
+
[](https://github.com/H0wZy/mcp/actions/workflows/ci.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/@h0wzy/mcp)
|
|
5
|
+
[](https://github.com/H0wZy/mcp/releases)
|
|
6
|
+
[](https://github.com/H0wZy/mcp/blob/main/LICENSE)
|
|
7
|
+
|
|
8
|
+
Centralize, enhance, and distribute high-performance **MCP (Model Context Protocol)** servers connecting the world's leading AI developer CLIs:
|
|
9
|
+
- **Claude Code** (Anthropic)
|
|
10
|
+
- **OpenAI Codex CLI** (OpenAI GPT-5.6 / GPT-6 Astra)
|
|
11
|
+
- **Google Antigravity** (Gemini 3.1 Pro / Flash)
|
|
12
|
+
|
|
13
|
+
Cross-model code reviews, independent second opinions, and autonomous multi-agent validation — configured effortlessly via an interactive **Golang TUI CLI**.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## ⚡ Instant Run (Zero Setup Required)
|
|
18
|
+
|
|
19
|
+
Run directly with `npx` — no pre-installation of Go or local binaries required! The runner automatically retrieves the native binary for your OS and architecture:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx @h0wzy/mcp
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Or install globally via npm:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm install -g @h0wzy/mcp
|
|
29
|
+
h0wzy-mcp
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## 🎮 CLI Features & Commands
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
# Diagnose local environment, CLI installations, and paths
|
|
38
|
+
h0wzy-mcp doctor
|
|
39
|
+
|
|
40
|
+
# Diagnose and output as JSON
|
|
41
|
+
h0wzy-mcp doctor --json
|
|
42
|
+
|
|
43
|
+
# Install all supported integrations automatically
|
|
44
|
+
h0wzy-mcp install --all
|
|
45
|
+
|
|
46
|
+
# Install a specific bridge globally or per-project
|
|
47
|
+
h0wzy-mcp install claude-antigravity --scope user
|
|
48
|
+
h0wzy-mcp install claude-codex --scope project
|
|
49
|
+
|
|
50
|
+
# List available bridges
|
|
51
|
+
h0wzy-mcp list
|
|
52
|
+
|
|
53
|
+
# Remove an integration
|
|
54
|
+
h0wzy-mcp remove claude-antigravity
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## 🔌 Available MCP Bridges & Tools
|
|
60
|
+
|
|
61
|
+
| Bridge | Tool Name | Description |
|
|
62
|
+
| :--- | :--- | :--- |
|
|
63
|
+
| **Antigravity** | `ask_antigravity` | Get an independent second opinion or code review from Gemini 3.1 Pro / Flash |
|
|
64
|
+
| **Codex** | `ask_codex` | Cross-verification with OpenAI Codex (GPT-5.6 / GPT-6 Astra) |
|
|
65
|
+
| **Codex** | `review_codex` | Structured repository code review from OpenAI Codex |
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## 📄 Repository & Full Documentation
|
|
70
|
+
|
|
71
|
+
For interactive system architecture diagrams, source code, and release notes:
|
|
72
|
+
👉 **[GitHub Repository: H0wZy/mcp](https://github.com/H0wZy/mcp)**
|
package/package.json
CHANGED
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h0wzy/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Interactive CLI runner for H0wZy/mcp — The Ultimate Multi-Agent MCP Hub",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"h0wzy-mcp": "bin/h0wzy-mcp.js"
|
|
8
8
|
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"mcp",
|
|
11
|
+
"model-context-protocol",
|
|
12
|
+
"claude-code",
|
|
13
|
+
"antigravity",
|
|
14
|
+
"codex",
|
|
15
|
+
"multi-agent",
|
|
16
|
+
"cli",
|
|
17
|
+
"ai-agents",
|
|
18
|
+
"developer-tools",
|
|
19
|
+
"gemini"
|
|
20
|
+
],
|
|
9
21
|
"author": "Marcos (H0wZy) <h0wzymarcos@gmail.com>",
|
|
10
22
|
"license": "MIT",
|
|
11
23
|
"repository": {
|