Skip to content

Commit 5bbf33d

Browse files
authored
fix: remove incorrect us-east-1 default from --region docs (#253)
1 parent bcca089 commit 5bbf33d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ docker build -t mcp-proxy-for-aws .
9898
| --- | --- | --- |--- |
9999
| `--service` | AWS service name for SigV4 signing, if omitted we try to infer this from the url | Inferred from endpoint if not provided |No |
100100
| `--profile` | AWS profile for AWS credentials to use | Uses `AWS_PROFILE` environment variable if not set |No |
101-
| `--region` | AWS region to use | Uses `AWS_REGION` environment variable if not set, defaults to `us-east-1` |No |
101+
| `--region` | AWS region to use | Uses `AWS_REGION` environment variable if not set |No |
102102
| `--metadata` | Metadata to inject into MCP requests as key=value pairs (e.g., `--metadata KEY1=value1 KEY2=value2`) | `AWS_REGION` is automatically injected based on `--region` if not provided |No |
103103
| `--read-only` | Disable tools which may require write permissions (tools which DO NOT require write permissions are annotated with [`readOnlyHint=true`](https://modelcontextprotocol.io/specification/2025-06-18/schema#toolannotations-readonlyhint)) | `False` |No |
104104
| `--retries` | Configures number of retries done when calling upstream services, setting this to 0 disables retries. | 0 |No |

mcp_proxy_for_aws/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def parse_args():
9797

9898
parser.add_argument(
9999
'--region',
100-
help='AWS region to sign (uses AWS_REGION environment variable if not provided, with final fallback to us-east-1)',
100+
help='AWS region to sign (uses AWS_REGION environment variable if not provided)',
101101
default=None,
102102
)
103103

0 commit comments

Comments
 (0)