Skip to content
Open
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
23 changes: 15 additions & 8 deletions starter/hono-mcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,36 +22,43 @@ The Model Context Protocol (MCP) is an open protocol that standardizes how appli
## Prerequisites

- [Vercel CLI](https://vercel.com/docs/cli) installed globally
- Node.js 20 or later

## Development

To develop locally:
Run commands from this example directory, not from the repository root:

```
```bash
cd starter/hono-mcp
npm install
vc dev
vercel dev
```

```
When the Vercel CLI asks for the project root, keep the default current
directory (`starter/hono-mcp`). Do not point the project root at `src`; `src`
contains the Hono entrypoint, but the package metadata and lockfile live one
level above it.

```bash
open http://localhost:3000
```

## Build

To build locally:

```
```bash
npm install
vc build
vercel build
```

## Deployment

To deploy:

```
```bash
npm install
vc deploy
vercel deploy
```

## API Endpoints
Expand Down