MCP Catalogs
Home

time vs mcp-server-amazon-bedrock

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

time
by modelcontextprotocol
mcp-server-amazon-bedrock
by zxkane
Stars★ 85,748★ 24
30d uses
Score7737
Official
Categories
ProductivityDeveloper ToolsCommunication
AI / LLM ToolsMediaDeveloper Tools
LanguageTypeScriptJavaScript
Last committhis month13 mo ago

time · Summary

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

mcp-server-amazon-bedrock · Summary

MCP server for Amazon Bedrock Nova Canvas AI image generation with configurable parameters.

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

mcp-server-amazon-bedrock · Use cases

  • Content creators needing AI-generated images for blogs, social media, or marketing materials
  • Designers generating concept art or mockups with specific requirements
  • Applications requiring programmatic image generation based on user input

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

mcp-server-amazon-bedrock · Install

Installation

AWS Credentials Configuration

The server requires AWS credentials with appropriate Amazon Bedrock permissions. Configure these using one of the following methods:

  1. Environment variables:
export AWS_ACCESS_KEY_ID=your_access_key
export AWS_SECRET_ACCESS_KEY=your_secret_key
export AWS_REGION=us-east-1  # or your preferred region
  1. AWS credentials file (~/.aws/credentials):
[the_profile_name]
aws_access_key_id = your_access_key
aws_secret_access_key = your_secret_key

Environment variable for active profile:

export AWS_PROFILE=the_profile_name
  1. IAM role (when deployed on AWS infrastructure)

Claude Desktop Integration

To integrate with Claude Desktop, add the following configuration to your settings file:

MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "amazon-bedrock": {
      "command": "npx",
      "args": [
        "-y",
        "@zxkane/mcp-server-amazon-bedrock"
      ],
      "env": {
        "AWS_PROFILE": "your_profile_name",
        "AWS_ACCESS_KEY_ID": "your_access_key",
        "AWS_SECRET_ACCESS_KEY": "your_secret_key",
        "AWS_REGION": "us-east-1"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.