You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/burger-mcp/README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,9 @@
14
14
This is the Burger MCP server, exposing the Burger API as a Model Context Protocol (MCP) server. The MCP server allows LLMs to interact with the burger ordering process through MCP tools.
15
15
16
16
This server supports the following transport types:
17
-
-**SSE**
18
17
-**Streamable HTTP**
19
-
-**Stdio** (currently only supported when starting the server locally with `npm start`)
18
+
-**SSE** (legacy protocol, for backward compatibility)
19
+
-**Stdio** (currently only supported when starting the server locally with `npm start:local`)
20
20
21
21
The remote server is deployed with [Azure Container Apps](https://learn.microsoft.com/azure/container-apps/overview).
22
22
@@ -46,12 +46,12 @@ First, you need to start the Burger API and Burger MCP server locally.
46
46
npx -y @modelcontextprotocol/inspector
47
47
```
48
48
2. Ctrl+click to load the MCP Inspector web app from the URL displayed by the app (e.g. http://127.0.0.1:6274)
49
-
3. In the MCP Inspector, set the transport type to **SSE** and
50
-
3. Put `http://localhost:3000/sse`in the URL field and click on the **Connect** button.
49
+
3. In the MCP Inspector, set the transport type to **Streamable HTTP** and
50
+
3. Put `http://localhost:3000/mcp`in the URL field and click on the **Connect** button.
51
51
4. In the **Tools** tab, select**List Tools**. Click on a tool and select**Run Tool**.
52
52
53
53
> [!NOTE]
54
-
> This application also provides a streamable HTTP endpoint if you use `/mcp` instead of `/sse`in the URL field.
54
+
> This application also provides an SSE endpoint if you use `/sse` instead of `/mcp`in the URL field.
55
55
56
56
## Development
57
57
@@ -71,7 +71,7 @@ If you prefer to run the project locally, follow [these instructions](../../READ
71
71
You can run the following command to run the application server:
72
72
73
73
```bash
74
-
npm start:server
74
+
npm start
75
75
```
76
76
77
77
Alternatively, you can also use Docker to run the application:
@@ -81,4 +81,4 @@ npm run docker:build
81
81
npm run docker:run
82
82
```
83
83
84
-
This will start the application in a Docker container. The MCP server is then available at `http://localhost:3000/sse` or `http://localhost:3000/mcp`for the SSE and streamable HTTP endpoints, respectively.
84
+
This will start the application in a Docker container. The MCP server is then available at `http://localhost:3000/mcp` or `http://localhost:3000/sse`for the streamable HTTP and SSE endpoints, respectively.
0 commit comments