MCP Catalogs
Home

mcp-teams-server vs everything

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

mcp-teams-server
by InditexTech
everything
by modelcontextprotocol
Stars★ 373★ 85,748
30d uses
Score5077
Official
Categories
CommunicationProductivityDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis month

mcp-teams-server · Summary

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

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.