From 4bd47bba5500161b77c44cb513cc51262b45a8bd Mon Sep 17 00:00:00 2001 From: Takanori Hirano Date: Thu, 23 Oct 2025 03:03:56 +0900 Subject: [PATCH 1/2] docs: document --no-auto-tls flag --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5c469b2..69440e5 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,8 @@ If you use stdio transport That's it! Your HTTP endpoint is now available at `https://{your-domain}/mcp`. +- Don't want the proxy to manage TLS? Add `--no-auto-tls` so you can terminate TLS elsewhere or keep the backend on plain HTTP. + - stdio (when a command is specified): MCP endpoint is https://{your-domain}/mcp. - SSE/HTTP (when a URL is specified): MCP endpoint uses the backend’s original path (no conversion). From 110b76e50eff40df9be62c9368f54dd0fb8939d6 Mon Sep 17 00:00:00 2001 From: Takanori Hirano Date: Thu, 23 Oct 2025 03:06:21 +0900 Subject: [PATCH 2/2] docs: update README to format TLS management note --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 69440e5..6927576 100644 --- a/README.md +++ b/README.md @@ -34,11 +34,11 @@ If you use stdio transport That's it! Your HTTP endpoint is now available at `https://{your-domain}/mcp`. -- Don't want the proxy to manage TLS? Add `--no-auto-tls` so you can terminate TLS elsewhere or keep the backend on plain HTTP. - - stdio (when a command is specified): MCP endpoint is https://{your-domain}/mcp. - SSE/HTTP (when a URL is specified): MCP endpoint uses the backend’s original path (no conversion). +> Don't want the proxy to manage TLS? Add `--no-auto-tls` so you can terminate TLS elsewhere or keep the backend on plain HTTP. + ## Why not MCP Gateway? mcp-auth-proxy: **A lightweight proxy that adds authentication to any MCP server** (optional stdio→HTTP(S) conversion)