@adia-ai/a2ui-mcp 0.4.2 → 0.4.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/CHANGELOG.md +8 -0
- package/README.md +13 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,14 @@ zettel strategies.
|
|
|
11
11
|
|
|
12
12
|
_No pending changes._
|
|
13
13
|
|
|
14
|
+
## [0.4.3] - 2026-05-11
|
|
15
|
+
|
|
16
|
+
### Ride-along (no source changes)
|
|
17
|
+
|
|
18
|
+
Lockstep PATCH cut alongside `@adia-ai/web-components@0.4.3` (input-ui type=number locale + thousands grouping + hold-to-repeat) + `@adia-ai/a2ui-compose@0.4.3` + `@adia-ai/a2ui-retrieval@0.4.3` (process.env browser-compat fix) + `@adia-ai/a2ui-corpus@0.4.3` (catalog regen + chunks re-harvest with new settings-appearance pattern). Source byte-identical to v0.4.2.
|
|
19
|
+
|
|
20
|
+
Internal `@adia-ai/*` dep ranges stay at `^0.4.0` (patch-cut asymmetry — `^0.4.0` covers `0.4.x` under semver). See root [CHANGELOG.md `## [0.4.3]`](../../../CHANGELOG.md) for the cut narrative.
|
|
21
|
+
|
|
14
22
|
## [0.4.2] - 2026-05-11
|
|
15
23
|
|
|
16
24
|
### Added
|
package/README.md
CHANGED
|
@@ -11,12 +11,22 @@ other MCP-speaking host.
|
|
|
11
11
|
> [`@adia-ai/a2ui-runtime`](../runtime); corpus in
|
|
12
12
|
> [`@adia-ai/a2ui-corpus`](../corpus).
|
|
13
13
|
|
|
14
|
+
## Install
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install -g @adia-ai/a2ui-mcp # global — exposes the `adiaui-mcp` bin
|
|
18
|
+
# OR
|
|
19
|
+
npm install @adia-ai/a2ui-mcp # local — invoke via npx
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
The package ships an `adiaui-mcp` executable + a `server.js` entry point. Most MCP hosts (Claude Desktop, Claude Code) invoke the binary directly via `command` + `args` in their MCP config.
|
|
23
|
+
|
|
14
24
|
## Quick start
|
|
15
25
|
|
|
16
26
|
```bash
|
|
17
|
-
|
|
18
|
-
#
|
|
19
|
-
|
|
27
|
+
adiaui-mcp # if globally installed
|
|
28
|
+
npx @adia-ai/a2ui-mcp # via npx
|
|
29
|
+
node packages/a2ui/mcp/server.js # from a local checkout
|
|
20
30
|
```
|
|
21
31
|
|
|
22
32
|
Register with Claude Code (`.claude/settings.json`):
|
package/package.json
CHANGED