├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── pyproject.toml ├── smithery.yaml ├── src └── mcp_server_aws │ ├── __init__.py │ ├── server.py │ ├── tools.py │ └── utils.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikavikondala/mcp-server-aws/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikavikondala/mcp-server-aws/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikavikondala/mcp-server-aws/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikavikondala/mcp-server-aws/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikavikondala/mcp-server-aws/HEAD/pyproject.toml -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikavikondala/mcp-server-aws/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/mcp_server_aws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikavikondala/mcp-server-aws/HEAD/src/mcp_server_aws/__init__.py -------------------------------------------------------------------------------- /src/mcp_server_aws/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikavikondala/mcp-server-aws/HEAD/src/mcp_server_aws/server.py -------------------------------------------------------------------------------- /src/mcp_server_aws/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikavikondala/mcp-server-aws/HEAD/src/mcp_server_aws/tools.py -------------------------------------------------------------------------------- /src/mcp_server_aws/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikavikondala/mcp-server-aws/HEAD/src/mcp_server_aws/utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikavikondala/mcp-server-aws/HEAD/uv.lock --------------------------------------------------------------------------------