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.
Files changed (2) hide show
  1. package/README.md +15 -7
  2. 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
- > **Breaking change (v0.5.0):** The Docker image, HTTP transport, and the
7
- > separate HTTP binary have been removed. The hub now ships stdio-only.
8
- > A containerised server cannot see the caller's repository path or reuse the
9
- > caller's CLI logins, so the Docker deployment broke the product contract on
10
- > both halves.
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 reviewed by **name only** their contents
66
- are not in the diff.
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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-mcp-hub",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "description": "One MCP server bridging the Codex, Cursor, OpenCode, and Claude CLI agents",
5
5
  "repository": {
6
6
  "type": "git",