diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 0f85177..39cf77c 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -96,23 +96,21 @@ git commit -m "feat: add new feature description" #### Basic Local Execution ```bash # Run the server directly -uv run mcp_proxy_for_aws/server.py --endpoint +uv run mcp_proxy_for_aws/server.py ``` #### With MCP Inspector (for debugging) ```bash # Run with MCP inspector for interactive debugging npx @modelcontextprotocol/inspector uv run \ - mcp_proxy_for_aws/server.py \ - --endpoint + mcp_proxy_for_aws/server.py ``` 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. #### Advanced Options ```bash # Run with specific AWS profile and write permissions -uv run mcp_proxy_for_aws/server.py \ - --endpoint \ +uv run mcp_proxy_for_aws/server.py \ --service \ --profile \ --allow-write @@ -378,7 +376,7 @@ Enable debug logging for troubleshooting: ```bash # Set logging level to debug export LOG_LEVEL=DEBUG -uv run mcp_proxy_for_aws/server.py --endpoint +uv run mcp_proxy_for_aws/server.py ``` ## Additional Resources