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
uv run mcp_proxy_for_aws/server.py --endpoint <your-endpoint>
99
+
uv run mcp_proxy_for_aws/server.py <your-endpoint>
100
100
```
101
101
102
102
#### With MCP Inspector (for debugging)
103
103
```bash
104
104
# Run with MCP inspector for interactive debugging
105
105
npx @modelcontextprotocol/inspector uv run \
106
-
mcp_proxy_for_aws/server.py \
107
-
--endpoint <your-endpoint>
106
+
mcp_proxy_for_aws/server.py <your-endpoint>
108
107
```
109
108
A browser window will open automatically outside of your terminal window. Navigate to the browser window. Then click "Connect" in the opened browser window to interact with the server.
110
109
111
110
#### Advanced Options
112
111
```bash
113
112
# Run with specific AWS profile and write permissions
114
-
uv run mcp_proxy_for_aws/server.py \
115
-
--endpoint <your-endpoint> \
113
+
uv run mcp_proxy_for_aws/server.py <your-endpoint> \
116
114
--service <aws-service> \
117
115
--profile <aws-profile> \
118
116
--allow-write
@@ -378,7 +376,7 @@ Enable debug logging for troubleshooting:
378
376
```bash
379
377
# Set logging level to debug
380
378
export LOG_LEVEL=DEBUG
381
-
uv run mcp_proxy_for_aws/server.py --endpoint <endpoint>
0 commit comments