@mcp-b/transports 2.3.2 → 3.0.0-beta.20260702171253
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 +6 -6
- package/package.json +7 -6
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
[](https://www.typescriptlang.org/)
|
|
9
9
|
[](https://bundlephobia.com/package/@mcp-b/transports)
|
|
10
10
|
|
|
11
|
-
**[
|
|
11
|
+
**[Reference](https://docs.mcp-b.ai/packages/transports/reference)** | **[First Tool Tutorial](https://docs.mcp-b.ai/tutorials/first-tool)** | **[Transport Architecture](https://docs.mcp-b.ai/explanation/architecture/transports-and-bridges)**
|
|
12
12
|
|
|
13
13
|
**@mcp-b/transports** provides browser-native MCP transport implementations that enable AI agents and LLMs to communicate with web applications. Whether you're building Chrome extensions, embedded iframes, or in-page AI integrations, this library provides the secure messaging layer you need.
|
|
14
14
|
|
|
@@ -555,16 +555,16 @@ Yes! `TabServerTransport` and `TabClientTransport` work entirely within a web pa
|
|
|
555
555
|
|
|
556
556
|
## Related Packages
|
|
557
557
|
|
|
558
|
-
- [`@mcp-b/global`](https://docs.mcp-b.ai/packages/global) -
|
|
559
|
-
- [`@mcp-b/react-webmcp`](https://docs.mcp-b.ai/packages/react-webmcp) - React hooks for MCP tool registration
|
|
560
|
-
- [`@mcp-b/extension-tools`](https://docs.mcp-b.ai/packages/extension-tools) - 62+ Chrome Extension API tools for MCP
|
|
561
|
-
- [`@mcp-b/chrome-devtools-mcp`](https://docs.mcp-b.ai/packages/chrome-devtools-mcp) - Connect desktop AI agents to browser tools
|
|
558
|
+
- [`@mcp-b/global`](https://docs.mcp-b.ai/packages/global/reference) - Full MCP-B browser runtime
|
|
559
|
+
- [`@mcp-b/react-webmcp`](https://docs.mcp-b.ai/packages/react-webmcp/reference) - React hooks for MCP tool registration
|
|
560
|
+
- [`@mcp-b/extension-tools`](https://docs.mcp-b.ai/packages/extension-tools/reference) - 62+ Chrome Extension API tools for MCP
|
|
561
|
+
- [`@mcp-b/chrome-devtools-mcp`](https://docs.mcp-b.ai/packages/chrome-devtools-mcp/reference) - Connect desktop AI agents to browser tools
|
|
562
562
|
- [`@modelcontextprotocol/sdk`](https://www.npmjs.com/package/@modelcontextprotocol/sdk) - Official MCP SDK
|
|
563
563
|
|
|
564
564
|
## Resources
|
|
565
565
|
|
|
566
566
|
- [WebMCP Documentation](https://docs.mcp-b.ai)
|
|
567
|
-
- [Transport
|
|
567
|
+
- [Transport Architecture](https://docs.mcp-b.ai/explanation/architecture/transports-and-bridges)
|
|
568
568
|
- [Model Context Protocol Spec](https://modelcontextprotocol.io)
|
|
569
569
|
- [MCP GitHub Repository](https://github.com/modelcontextprotocol)
|
|
570
570
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-b/transports",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-beta.20260702171253",
|
|
4
4
|
"description": "Browser transport implementations for Model Context Protocol (MCP) - postMessage, Chrome extension messaging, and iframe communication for AI agents and LLMs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-agents",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"web-ai",
|
|
32
32
|
"webmcp"
|
|
33
33
|
],
|
|
34
|
-
"homepage": "https://docs.mcp-b.ai/packages/transports",
|
|
34
|
+
"homepage": "https://docs.mcp-b.ai/packages/transports/reference",
|
|
35
35
|
"bugs": {
|
|
36
36
|
"url": "https://github.com/WebMCP-org/npm-packages/issues"
|
|
37
37
|
},
|
|
@@ -60,16 +60,17 @@
|
|
|
60
60
|
"registry": "https://registry.npmjs.org/"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
+
"@modelcontextprotocol/sdk": "1.29.0",
|
|
63
64
|
"zod": "3.25.76",
|
|
64
|
-
"@mcp-b/webmcp-ts-sdk": "
|
|
65
|
+
"@mcp-b/webmcp-ts-sdk": "3.0.0-beta.20260702171253"
|
|
65
66
|
},
|
|
66
67
|
"devDependencies": {
|
|
67
68
|
"@types/chrome": "^0.0.326",
|
|
68
69
|
"@types/node": "22.17.2",
|
|
69
|
-
"@vitest/coverage-v8": "^4.1.
|
|
70
|
-
"playwright": "^1.
|
|
70
|
+
"@vitest/coverage-v8": "^4.1.7",
|
|
71
|
+
"playwright": "^1.60.0",
|
|
71
72
|
"typescript": "^5.8.3",
|
|
72
|
-
"vite-plus": "
|
|
73
|
+
"vite-plus": "^0.1.22",
|
|
73
74
|
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
|
|
74
75
|
},
|
|
75
76
|
"scripts": {
|