From 3757ec818d17716a2f59bc87c711aeed19c10774 Mon Sep 17 00:00:00 2001 From: Taylor Wilsdon Date: Mon, 26 May 2025 08:45:06 -0400 Subject: [PATCH] Update README.md --- README.md | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index e552b30..1e4315d 100644 --- a/README.md +++ b/README.md @@ -253,22 +253,18 @@ To use this server as a tool provider within Open WebUI: ```json { - "mcpServers": { - "gworkspace": { - "type": "streamable_http", - "command": "uv", - "args": [ - "run", - "main.py" - ], - "options": { - "cwd": "/path/to/google_workspace_mcp", - "env": { - "OAUTHLIB_INSECURE_TRANSPORT": "1" - } - } - } - } + "mcpServers": { + "gworkspace": { + "options": { + "cwd": "/Users/taylorwilsdon/tmp/google_workspace_mcp", + "env": { + "OAUTHLIB_INSECURE_TRANSPORT": "1" + }, + "command": "uv", + "args": ["run", "main.py"] + } + } + } } ``` *Note: Using `uv run main.py` ensures the correct virtual environment is used.*