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
|`MCP_TRANSPORT`| Use the `stdio`, `streamable-http` or `sse` transport |`stdio`|
74
+
|`MCP_HOST`| Server host when `streamable-http` or `sse` are set |`127.0.0.1`|
75
+
|`MCP_PORT`| Server port when `streamable-http` or `sse` are set |`8000`|
74
76
75
77
76
78
There are several ways to set environment variables:
@@ -101,9 +103,38 @@ OR,
101
103
## Transports
102
104
103
105
This MCP server can be configured to handle requests locally, running as a process and communicating with the MCP client via `stdin` and `stdout`.
104
-
This is the default configuration. The `sse`transport is also configurable so the server is available over the network.
106
+
This is the default configuration, `stdio`. The `streamable-http` and `sse`(deprecated) transports are also configurable, which make the server available over the network.
105
107
Configure the `MCP_TRANSPORT` variable accordingly.
106
108
109
+
> Authentication has not yet been implemented, and [attackers could use DNS rebinding](https://modelcontextprotocol.io/docs/concepts/transports#security-considerations) to access the server.
0 commit comments