MCP Catalogs
Home

time vs aws-s3-mcp

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

time
by modelcontextprotocol
aws-s3-mcp
by samuraikun
Stars★ 85,748★ 24
30d uses
Score7742
Official
Categories
ProductivityDeveloper ToolsCommunication
Cloud StorageDeveloper ToolsAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis month3 mo ago

time · Summary

A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.

aws-s3-mcp · Summary

A well-designed MCP server for AWS S3 integration with both HTTP and STDIO transport support.

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-s3-mcp · Use cases

  • Enabling LLMs to access and retrieve data from AWS S3 buckets
  • Building applications that allow AI assistants to browse and process files stored in S3
  • Creating MCP-based workflows that integrate S3 operations into AI agent behavior

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"]
    }
  }
}

aws-s3-mcp · Install

Installation

  1. Install via npm:
npm install -g aws-s3-mcp
  1. Configure AWS credentials (environment variables or .env file)
  1. Run with HTTP transport:
npx aws-s3-mcp

Or with STDIO for Claude Desktop:

npx aws-s3-mcp --stdio
  1. For Claude Desktop integration, add to config:
{
  "mcpServers": {
    "s3": {
      "command": "npx",
      "args": ["aws-s3-mcp", "--stdio"],
      "env": {
        "AWS_REGION": "us-east-1",
        "S3_BUCKETS": "bucket1,bucket2,bucket3",
        "AWS_ACCESS_KEY_ID": "your-access-key",
        "AWS_SECRET_ACCESS_KEY": "your-secret-key"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.