MCP Catalogs
Home

QuantDinger vs aws-finops-mcp-server

Side-by-side comparison to help you pick between these two MCP servers.

QuantDinger
by brokermr810
aws-finops-mcp-server
by ravikiranvm
Stars★ 5,392★ 176
30d uses
Score5845
Official
Categories
FinanceAI / LLM ToolsDeveloper Tools
FinanceCloud StorageMonitoring
LanguagePythonPython
Last committhis month11 mo ago

QuantDinger · Summary

QuantDinger is an AI-powered quantitative trading platform with MCP server integration for market research and trading operations.

aws-finops-mcp-server · Summary

AWS FinOps MCP server for analyzing cloud costs and detecting waste through natural language queries.

QuantDinger · Use cases

  • AI-driven market research and strategy development
  • Automated backtesting of trading strategies
  • AI agent-assisted trade execution with audit logging

aws-finops-mcp-server · Use cases

  • An AWS cost and usage analysis across multiple time ranges and profiles
  • Running FinOps audits to identify unused or underutilized resources
  • Comparing costs between different environments or projects

QuantDinger · Install

QuantDinger can be installed via Docker Compose in just a few steps:

git clone https://github.com/brokermr810/QuantDinger.git && cd QuantDinger && cp backend_api_python/env.example backend_api_python/.env && chmod +x scripts/generate-secret-key.sh && ./scripts/generate-secret-key.sh && docker-compose up -d --build

After starting the service, access it at http://localhost:8888 with default credentials quantdinger/123456 (be sure to change the password).

To use with Claude Desktop, configure MCP server with:

{
  "mcpServers": {
    "quantdinger": {
      "command": "uvx",
      "args": ["quantdinger-mcp"],
      "env": {
        "QUANTDINGER_BASE_URL": "http://localhost:8888",
        "QUANTDINGER_AGENT_TOKEN": "qd_agent_xxxxxxxx"
      }
    }
  }
}

aws-finops-mcp-server · Install

Installation Options

**Option 1: Using pipx (Recommended)**

pipx install aws-finops-mcp-server

**Option 2: Using uv**

uv venv && source .venv/bin/activate
uv pip install aws-finops-mcp-server

**Option 3: From Source**

git clone https://github.com/ravikiranvm/aws-finops-mcp-server.git
cd aws-finops-mcp-server
python -m venv .venv && source .venv/bin/activate
pip install -e .

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "aws_finops": {
      "command": "aws-finops-mcp-server",
      "args": []
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.