time vs BitbucketMcpServers
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | BitbucketMcpServers by peakflames | |
|---|---|---|
| Stars | ★ 85,748 | ★ 3 |
| 30d uses | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsGitHubProductivity |
| Language | TypeScript | C# |
| Last commit | this month | 3 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
BitbucketMcpServers · Summary
C# implementation of MCP server for Bitbucket integration with pull request operations.
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
BitbucketMcpServers · Use cases
- Automate Bitbucket pull request management through MCP-enabled AI assistants
- Integrate Bitbucket operations into AI-powered development workflows
- Provide AI assistants with access to Bitbucket repository information
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"]
}
}
}BitbucketMcpServers · Install
Installation
Via Docker (Recommended)
- Pull the Docker image:
docker pull peakflames/bitbucket-remote-mcp-server- Create an
appsettings.jsonfile with your Bitbucket account name:
{
"BitbucketCloudConfig": {
"AccountName": "your-workspace-name"
}
}- Run with OAuth 2.0 credentials:
docker run -d \
--name bitbucket-mcp-server \
-p 8080:8080 \
-e BITBUCKET_MCP_CONSUMER_KEY="your_consumer_key" \
-e BITBUCKET_MCP_SECRET_KEY="your_secret_key" \
-v $(pwd)/appsettings.json:/app/appsettings.json \
peakflames/bitbucket-remote-mcp-serverClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"Bitbucket": {
"command": "docker",
"args": ["run", "--rm", "-p", "8080:8080", "peakflames/bitbucket-remote-mcp-server"],
"transportType": "sse",
"url": "http://localhost:8080/sse"
}
}
}