From 08de13ff2cfae0b74a8e2c1bef676c4e578357ad Mon Sep 17 00:00:00 2001 From: xiaoxiaozhoutop Date: Sat, 18 Apr 2026 02:06:22 +0800 Subject: [PATCH] docs: Update README.md to add AWS endpoint URL configuration Instructions for configuring AWS endpoint URLs through command-line parameters and environment variables have been added, to maintain consistency with other AWS credential configuration methods --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7d5abe4..e6d47b7 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,7 @@ rustfs-mcp --log-level debug --region us-west-2 "rustfs-mcp": { "command": "/path/to/rustfs-mcp", "args": [ + "--endpoint-url", "your_url", "--access-key-id", "your_access_key", "--secret-access-key", "your_secret_key", "--region", "us-west-2", @@ -140,6 +141,7 @@ rustfs-mcp --log-level debug --region us-west-2 "rustfs-mcp": { "command": "/path/to/rustfs-mcp", "env": { + "AWS_ENDPOINT_URL": "your_url", "AWS_ACCESS_KEY_ID": "your_access_key", "AWS_SECRET_ACCESS_KEY": "your_secret_key", "AWS_REGION": "us-east-1"