Skip to content

Commit bb3eebe

Browse files
authored
docs: Remove --endpoint from DEVELOPMENT.md (#64)
1 parent 1578383 commit bb3eebe

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

DEVELOPMENT.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,23 +96,21 @@ git commit -m "feat: add new feature description"
9696
#### Basic Local Execution
9797
```bash
9898
# Run the server directly
99-
uv run mcp_proxy_for_aws/server.py --endpoint <your-endpoint>
99+
uv run mcp_proxy_for_aws/server.py <your-endpoint>
100100
```
101101

102102
#### With MCP Inspector (for debugging)
103103
```bash
104104
# Run with MCP inspector for interactive debugging
105105
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>
108107
```
109108
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.
110109

111110
#### Advanced Options
112111
```bash
113112
# 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> \
116114
--service <aws-service> \
117115
--profile <aws-profile> \
118116
--allow-write
@@ -378,7 +376,7 @@ Enable debug logging for troubleshooting:
378376
```bash
379377
# Set logging level to debug
380378
export LOG_LEVEL=DEBUG
381-
uv run mcp_proxy_for_aws/server.py --endpoint <endpoint>
379+
uv run mcp_proxy_for_aws/server.py <endpoint>
382380
```
383381

384382
## Additional Resources

0 commit comments

Comments
 (0)