mcp-native 0.9.2 → 0.9.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 +11 -7
- package/package.json +6 -12
package/README.md
CHANGED
|
@@ -13,13 +13,16 @@
|
|
|
13
13
|
|
|
14
14
|
</div>
|
|
15
15
|
|
|
16
|
-
`mcp-native` is the convenient way to use the runtime, A2UI, React Native, mixed-surface,
|
|
17
|
-
APIs from one package. It re-exports the focused `@mcp-native/*` layers while leaving
|
|
18
|
-
adapters as a separate installation choice.
|
|
16
|
+
`mcp-native` is the current convenient way to use the runtime, A2UI, React Native, mixed-surface,
|
|
17
|
+
and WebView APIs from one package. It re-exports the focused `@mcp-native/*` layers while leaving
|
|
18
|
+
transport adapters as a separate installation choice. The `1.0.0` roadmap adds
|
|
19
|
+
`@mcp-native/host` as an optional high-level connect-call-render package; these low-level APIs remain
|
|
20
|
+
available for applications that need manual composition.
|
|
19
21
|
|
|
20
|
-
The current 0.9 line contains the React Native feature set
|
|
21
|
-
integration. New work should use A2UI v1 Candidate or the stable MCP Apps `2026-01-26` host flow;
|
|
22
|
-
the custom A2UI 0.1 APIs live under `/legacy` for migration.
|
|
22
|
+
The current 0.9 line contains the validated low-level React Native feature set and is ready to try in
|
|
23
|
+
an integration. New work should use A2UI v1 Candidate or the stable MCP Apps `2026-01-26` host flow;
|
|
24
|
+
the custom A2UI 0.1 APIs live under `/legacy` for migration. Public standard-contract registration
|
|
25
|
+
and application-defined custom input adapters are explicitly deferred until after `1.0.0`.
|
|
23
26
|
|
|
24
27
|
For the big picture, start with the [product guide](https://github.com/pablospaniard/mcp-native/blob/main/docs/product-guide.md).
|
|
25
28
|
|
|
@@ -29,7 +32,8 @@ For the big picture, start with the [product guide](https://github.com/pablospan
|
|
|
29
32
|
npm install mcp-native react
|
|
30
33
|
```
|
|
31
34
|
|
|
32
|
-
|
|
35
|
+
React `>=18.1.0` is the only peer dependency. Native components and platform integrations are
|
|
36
|
+
supplied by the host application. The package is ESM-only and includes TypeScript declarations.
|
|
33
37
|
|
|
34
38
|
## A2UI v1 Candidate path
|
|
35
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-native",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"description": "Convenience package for the MCP Native runtime.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"a2ui",
|
|
@@ -44,18 +44,12 @@
|
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@mcp-native/a2ui": "^0.9.
|
|
48
|
-
"@mcp-native/core": "^0.9.
|
|
49
|
-
"@mcp-native/react-native": "^0.9.
|
|
50
|
-
"@mcp-native/webview": "^0.9.
|
|
47
|
+
"@mcp-native/a2ui": "^0.9.3",
|
|
48
|
+
"@mcp-native/core": "^0.9.3",
|
|
49
|
+
"@mcp-native/react-native": "^0.9.3",
|
|
50
|
+
"@mcp-native/webview": "^0.9.3"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"react": ">=18.
|
|
54
|
-
"react-native": ">=0.86.0 <1"
|
|
55
|
-
},
|
|
56
|
-
"peerDependenciesMeta": {
|
|
57
|
-
"react-native": {
|
|
58
|
-
"optional": true
|
|
59
|
-
}
|
|
53
|
+
"react": ">=18.1.0"
|
|
60
54
|
}
|
|
61
55
|
}
|