MCP Catalogs
Home

mcp-teams-server vs time

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

mcp-teams-server
by InditexTech
time
by modelcontextprotocol
Stars★ 373★ 85,748
30d uses
Score5077
Official
Categories
CommunicationProductivityDeveloper Tools
ProductivityDeveloper ToolsCommunication
LanguagePythonTypeScript
Last committhis monththis month

mcp-teams-server · Summary

MCP server for Microsoft Teams integration with message handling, member mentions, and thread management.

time · Summary

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

mcp-teams-server · Use cases

  • Automating team communications through AI assistants with Microsoft Teams integration
  • Creating AI workflows that monitor and respond to Teams messages in real-time
  • Building custom productivity tools that interact with Microsoft Teams data

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-teams-server · Install

Installation

Prerequisites

  • Python 3.10
  • uv package manager
  • Microsoft Teams account with Azure setup

Installation Steps

  1. Clone the repository:
git clone [repository-url]
cd mcp-teams-server
  1. Create virtual environment and install dependencies:
uv venv
uv sync --frozen --all-extras --dev
  1. Set up environment variables using [sample.env](sample.env) as template:
export TEAMS_APP_ID="your-app-id"
export TEAMS_APP_PASSWORD="your-password"
export TEAMS_APP_TYPE="SingleTenant" # or "MultiTenant"
export TEAMS_APP_TENANT_ID="your-tenant-id"
export TEAM_ID="your-team-id"
export TEAMS_CHANNEL_ID="your-channel-id"
  1. Start the server:
uv run mcp-teams-server

Claude Desktop Configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "teams": {
      "command": "uv",
      "args": ["run", "mcp-teams-server"],
      "env": {
        "TEAMS_APP_ID": "your-app-id",
        "TEAMS_APP_PASSWORD": "your-password",
        "TEAMS_APP_TYPE": "SingleTenant",
        "TEAMS_APP_TENANT_ID": "your-tenant-id",
        "TEAM_ID": "your-team-id",
        "TEAMS_CHANNEL_ID": "your-channel-id"
      }
    }
  }
}

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.