@mcp-b/transports 3.0.0 → 4.0.0-beta.20260702174111

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 +6 -6
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.0+-blue?style=flat-square)](https://www.typescriptlang.org/)
9
9
  [![Bundle Size](https://img.shields.io/bundlephobia/minzip/@mcp-b/transports?style=flat-square)](https://bundlephobia.com/package/@mcp-b/transports)
10
10
 
11
- **[Full Documentation](https://docs.mcp-b.ai/packages/transports)** | **[Quick Start](https://docs.mcp-b.ai/quickstart)** | **[Transport Concepts](https://docs.mcp-b.ai/concepts/transports)**
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) - W3C Web Model Context API polyfill for registering tools
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 Concepts](https://docs.mcp-b.ai/concepts/transports)
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.0.0",
3
+ "version": "4.0.0-beta.20260702174111",
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,8 +60,9 @@
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": "3.0.0"
65
+ "@mcp-b/webmcp-ts-sdk": "4.0.0-beta.20260702174111"
65
66
  },
66
67
  "devDependencies": {
67
68
  "@types/chrome": "^0.0.326",