add --skip-auth flag

This commit is contained in:
kissrobber 2025-04-18 09:45:13 +09:00
parent 504aa26761
commit 2f32badedf
4 changed files with 48 additions and 8 deletions

View file

@ -114,6 +114,16 @@ To bypass authentication, or to emit custom headers on all requests to your remo
]
```
* To completely skip authentication for servers that don't require it, add the `--skip-auth` flag. While the primary purpose of mcp-remote is to provide OAuth authentication to clients connecting to MCP servers, this flag enables the tool to be used as a simple SSE connection proxy in trusted environments (e.g., development environments, internal networks) where authentication is not required.
```json
"args": [
"mcp-remote",
"https://remote.mcp.server/sse",
"--skip-auth"
]
```
### Claude Desktop
[Official Docs](https://modelcontextprotocol.io/quickstart/user)