Skip to content
Merged
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
12 changes: 9 additions & 3 deletions examples/customer-segmentation-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,27 @@ A demo MCP App that displays customer data as an interactive scatter/bubble char

## Running

1. Install dependencies:
1. Install [Bun](https://github.com/oven-sh/bun) (if not already installed):

```bash
curl -fsSL https://bun.com/install | bash
```

2. Install dependencies:

```bash
npm install
```

2. Build and start the server:
3. Build and start the server:

```bash
npm start
```

The server will listen on `http://localhost:3001/mcp`.

3. View using the [`basic-host`](https://github.com/modelcontextprotocol/ext-apps/tree/main/examples/basic-host) example or another MCP Apps-compatible host.
4. View using the [`basic-host`](https://github.com/modelcontextprotocol/ext-apps/tree/main/examples/basic-host) example or another MCP Apps-compatible host.

## Architecture

Expand Down
Loading