Install the BitFlux MCP server

The MCP server is installed on your local workstation in one of several ways. bitflux_mcp Note that some features require you have aws credentials configured to interact with AWS.

See bitflux_mcp for the latest installation instructions.

AWS Requirement

The MCP server uses AWS APIs to get lists of the users EC2 instances and AWS instance pricing. It needs to run in an environment with AWS credentials either set with environment variables or from ~/.aws see boto3 docs for details.

Adding to AI agents

The MCP ecosystem is moving really fast. I'm not confident I can really document this satisfactorily. I'll add some examples here to help you get started. The v0.1.0 is the release number, you can find the latest release number from the releases page.

Claude Desktop

Edit the claude_desktop_config.json which you can find from File->Settings->Developer->Edit Config to include the following:

{
  "mcpServers": {
    "bitflux": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/bitflux-ai/bitflux_mcp.git@v0.1.0",
        "bitflux_mcp"
      ]
    }
  }
}

Windsurf

Edit ~/.codeium/windsurg/mcp_config.json to include the following:

{
  "mcpServers": {
    "bitflux_mcp": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/bitflux-ai/bitflux_mcp.git@v0.1.0",
        "bitflux_mcp"
      ],
      "disabled": false,
      "alwaysAllow": []
    }
  }
}

AMP

Edit ~/.config/amp/settings.json to include the following:

{
  "amp.mcpServers": {
    "bitflux_mcp": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/bitflux-ai/bitflux_mcp.git@v0.1.0",
        "bitflux_mcp"
      ],
      "disabled": false,
      "alwaysAllow": []
    }
  }
}