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
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug_report.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ body:
8
8
- type: textarea
9
9
id: description
10
10
attributes:
11
-
label: Describe the bug (Security related? please follow <https://github.com/aws/aws-mcp-proxy/security/policy> to report them to AWS Security directly.)
11
+
label: Describe the bug (Security related? please follow <https://github.com/aws/mcp-proxy-for-aws/security/policy> to report them to AWS Security directly.)
12
12
description: What is the problem? A clear and concise description of the bug.
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/feature_request.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ body:
8
8
- type: textarea
9
9
id: description
10
10
attributes:
11
-
label: Describe the feature (Security related? please follow <https://github.com/aws/aws-mcp-proxy/security/policy> to report them to AWS Security directly.)
11
+
label: Describe the feature (Security related? please follow <https://github.com/aws/mcp-proxy-for-aws/security/policy> to report them to AWS Security directly.)
12
12
description: A clear and concise description of the feature you are proposing.
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/questions.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ body:
8
8
- type: textarea
9
9
id: question
10
10
attributes:
11
-
label: Your question (Security related? please follow <https://github.com/aws/aws-mcp-proxy/security/policy> to report them to AWS Security directly.)
11
+
label: Your question (Security related? please follow <https://github.com/aws/mcp-proxy-for-aws/security/policy> to report them to AWS Security directly.)
12
12
description: A clear and concise description of the question.
uv run aws_mcp_proxy/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
-
aws_mcp_proxy/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 aws_mcp_proxy/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
@@ -284,7 +282,7 @@ If your commit message doesn't follow conventional format, the pre-commit hook w
284
282
#### Configuration
285
283
286
284
Commitizen is configured in `pyproject.toml`:
287
-
-**Version files**: Automatically updates version in `pyproject.toml` and `aws_mcp_proxy/__init__.py`
285
+
-**Version files**: Automatically updates version in `pyproject.toml` and `mcp_proxy_for_aws/__init__.py`
288
286
-**Tag format**: Creates git tags in `v{version}` format (e.g., `v0.1.0`)
289
287
-**Changelog**: Automatically generates `CHANGELOG.md` when bumping versions
290
288
@@ -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 aws_mcp_proxy/server.py --endpoint<endpoint>
379
+
uv run mcp_proxy_for_aws/server.py <endpoint>
382
380
```
383
381
384
382
## Additional Resources
@@ -391,6 +389,6 @@ uv run aws_mcp_proxy/server.py --endpoint <endpoint>
391
389
---
392
390
393
391
For questions or issues not covered in this guide, please:
0 commit comments