agent-mcp-hub 0.5.2 → 0.5.3
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 +15 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
One MCP server that bridges multiple CLI coding agents — **Codex**, **Cursor**,
|
|
4
4
|
**OpenCode**, and **Claude** — into any MCP client.
|
|
5
5
|
|
|
6
|
-
> **
|
|
7
|
-
>
|
|
8
|
-
>
|
|
9
|
-
>
|
|
10
|
-
>
|
|
6
|
+
> **stdio only — by design.** The hub ships no Docker image and no HTTP
|
|
7
|
+
> transport (both were removed during the 0.5.x line). A containerised or remote
|
|
8
|
+
> server cannot see the caller's repository path and cannot reuse the caller's
|
|
9
|
+
> CLI logins — it would break the product contract on both halves. The hub runs
|
|
10
|
+
> as a child process of your MCP client, on your machine, as you.
|
|
11
11
|
|
|
12
12
|
## Tools
|
|
13
13
|
|
|
@@ -62,8 +62,9 @@ worktree), optional `model`, `timeoutMs`.
|
|
|
62
62
|
|
|
63
63
|
- Cross-agent by design — e.g. `codex` writes, `claude` reviews.
|
|
64
64
|
- Returns the concrete diff that the plain agent tools don't expose.
|
|
65
|
-
- Newly-created (untracked) files are
|
|
66
|
-
|
|
65
|
+
- Newly-created (untracked) files are surfaced to the reviewer **with their
|
|
66
|
+
contents** (bounded: 64 KiB per file, 50 files; excess is truncated and
|
|
67
|
+
flagged). `git diff` alone would omit them entirely.
|
|
67
68
|
- If the worktree was already dirty, the diff may include pre-existing changes
|
|
68
69
|
(noted in the output).
|
|
69
70
|
- Complements — does not replace — client-side stop-hooks or PR-time CI review.
|
|
@@ -244,3 +245,10 @@ npm run build # emit dist/
|
|
|
244
245
|
Pure adapters (`src/adapters/*` — prompt → `{args, stdin?}`, no I/O) → one
|
|
245
246
|
subprocess boundary (`src/exec.ts`) → MCP stdio server (`src/server.ts`). Adding
|
|
246
247
|
an agent = one ~15-line adapter file + one line in `src/registry.ts`.
|
|
248
|
+
|
|
249
|
+
## License
|
|
250
|
+
|
|
251
|
+
[Mozilla Public License 2.0](./LICENSE) (MPL-2.0).
|
|
252
|
+
|
|
253
|
+
Versions **before 0.5.2 were released under the MIT license**; that grant stands
|
|
254
|
+
for those versions. MPL-2.0 applies from 0.5.2 onward.
|