aws-cost-explorer-mcp-server vs sequentialthinking
Side-by-side comparison to help you pick between these two MCP servers.
aws-cost-explorer-mcp-server by aarora79 | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 127 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 75 |
| Official | — | ✓ |
| Categories | FinanceDeveloper ToolsMonitoring | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 13 mo ago | this month |
aws-cost-explorer-mcp-server · Summary
An MCP server that provides AWS Cost Explorer and Bedrock usage data analysis through Claude Desktop or LangGraph agents.
sequentialthinking · Summary
Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.
aws-cost-explorer-mcp-server · Use cases
- Monitor and analyze AWS cloud spending patterns through Claude Desktop
- Create financial reports based on EC2 and Bedrock usage data
- Build custom chatbots using LangGraph with AWS cost insights
sequentialthinking · Use cases
- Planning complex system migrations with risk assessment
- Debugging production issues requiring step-by-step analysis
- Comparing architecture options with conditional branching
aws-cost-explorer-mcp-server · Install
Installation
- Install
uv:
# On macOS and Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# On Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"- Clone and setup the repository:
git clone https://github.com/aarora79/aws-cost-explorer-mcp.git
cd aws-cost-explorer-mcp
uv venv --python 3.12 && source .venv/bin/activate && uv pip install --requirement pyproject.toml- Configure AWS credentials in
~/.aws/credentials
Claude Desktop Configuration
{
"mcpServers": {
"aws-cost-explorer": {
"command": "uv",
"args": [
"--directory",
"/path/to/aws-cost-explorer-mcp",
"run",
"server.py"
],
"env": {
"AWS_ACCESS_KEY_ID": "YOUR_ACCESS_KEY_ID",
"AWS_SECRET_ACCESS_KEY": "YOUR_SECRET_ACCESS_KEY",
"AWS_REGION": "us-east-1",
"BEDROCK_LOG_GROUP_NAME": "YOUR_CLOUDWATCH_BEDROCK_LOG_GROUP_NAME",
"MCP_TRANSPORT": "stdio"
}
}
}
}sequentialthinking · Install
Installation
**Claude Desktop**: Add this to your claude_desktop_config.json:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**VS Code**: Use one of the installation buttons or manually configure with:
{
"servers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**Docker**:
{
"mcpServers": {
"sequentialthinking": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"mcp/sequentialthinking"
]
}
}
}