aws-cost-explorer-mcp-server vs time
Side-by-side comparison to help you pick between these two MCP servers.
aws-cost-explorer-mcp-server by aarora79 | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 127 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | FinanceDeveloper ToolsMonitoring | ProductivityDeveloper ToolsCommunication |
| 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.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
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
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
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"
}
}
}
}time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}