Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Browser context transport #206

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- [Running Your Server](#running-your-server)
- [stdio](#stdio)
- [HTTP with SSE](#http-with-sse)
- [Browser Context Transport](#browser-context-transport)
- [Testing and Debugging](#testing-and-debugging)
- [Examples](#examples)
- [Echo Server](#echo-server)
Expand Down Expand Up @@ -239,6 +240,29 @@ app.post("/messages", async (req, res) => {
app.listen(3001);
```

### Browser Context Transport

For in-browser applications, use the BrowserContextTransport to enable communication between browser contexts (same window, iframes, or web workers):

```typescript
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { BrowserContextTransport } from "@modelcontextprotocol/sdk/browser-context-transport.js";

// Create paired transports
const [clientTransport, serverTransport] = BrowserContextTransport.createChannelPair();

// Set up server
const server = new McpServer({
name: "browser-server",
version: "1.0.0"
});

// Connect server to its transport
await server.connect(serverTransport);

// The clientTransport can be used with an MCP client
```

### Testing and Debugging

To test your server, you can use the [MCP Inspector](https://github.com/modelcontextprotocol/inspector). See its README for more information.
Expand Down
Loading