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 --endpoint <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 \
106
+
mcp_proxy_for_aws/server.py \
107
107
--endpoint <your-endpoint>
108
108
```
109
109
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
110
111
111
#### Advanced Options
112
112
```bash
113
113
# Run with specific AWS profile and write permissions
114
-
uv run aws_mcp_proxy/server.py \
114
+
uv run mcp_proxy_for_aws/server.py \
115
115
--endpoint <your-endpoint> \
116
116
--service <aws-service> \
117
117
--profile <aws-profile> \
@@ -284,7 +284,7 @@ If your commit message doesn't follow conventional format, the pre-commit hook w
284
284
#### Configuration
285
285
286
286
Commitizen is configured in `pyproject.toml`:
287
-
-**Version files**: Automatically updates version in `pyproject.toml` and `aws_mcp_proxy/__init__.py`
287
+
-**Version files**: Automatically updates version in `pyproject.toml` and `mcp_proxy_for_aws/__init__.py`
288
288
-**Tag format**: Creates git tags in `v{version}` format (e.g., `v0.1.0`)
289
289
-**Changelog**: Automatically generates `CHANGELOG.md` when bumping versions
290
290
@@ -378,7 +378,7 @@ Enable debug logging for troubleshooting:
378
378
```bash
379
379
# Set logging level to debug
380
380
export LOG_LEVEL=DEBUG
381
-
uv run aws_mcp_proxy/server.py --endpoint <endpoint>
381
+
uv run mcp_proxy_for_aws/server.py --endpoint <endpoint>
382
382
```
383
383
384
384
## Additional Resources
@@ -391,6 +391,6 @@ uv run aws_mcp_proxy/server.py --endpoint <endpoint>
391
391
---
392
392
393
393
For questions or issues not covered in this guide, please:
0 commit comments