aws-finops-mcp-server
An MCP (Model Context Protocol) server that brings powerful AWS FinOps capabilities directly into your AI assistant. Analyze cloud costs, audit for waste, and get budget insights using natural language, all while keeping your credentials secure on your local machine.
File Explorer
Download Latest Version (.zip)- util.py
- __init__.py
- main.py
- .gitignore
- .python-version
- Amazon Q CLI.png
- Claude - FinOps Report.png
- Claude_Desktop.png
- LICENSE
- pyproject.toml
- README.md
- requirements.txt
- uv.lock
# Installation Guide
git clone https://github.com/ravikiranvm/aws-finops-mcp-server
Downloads the entire project code from GitHub to your computer.
cd aws-finops-mcp-server
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- pipx Installs Python-based CLI tools into isolated environments.
pipx install aws-finops-mcp-server
Installs the CLI tool into an isolated environment via pipx.
curl -LsSf https://astral.sh/uv/install.sh | sh
Downloads and runs the official install script in one line β this handles the full setup automatically.
Pulled directly from this repo's README.
3. Python
Easypython -m pip install --user pipx
Installs the Python libraries listed in requirements.txt (or similar).
python -m pipx ensurepath
Runs the Python script (or module).
uv pip install aws-finops-mcp-server
Installs the Python libraries listed in requirements.txt (or similar).
python -m venv .venv && source .venv/bin/activate
Runs the Python script (or module).
pip install -e .
Installs the Python libraries listed in requirements.txt (or similar).
Pulled directly from this repo's README.
