MCP Catalogs
Home

teams-mcp vs everything

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

teams-mcp
by floriscornel
everything
by modelcontextprotocol
Stars★ 99★ 85,748
30d uses
Score4977
Official
Categories
CommunicationDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

teams-mcp · Summary

MCP server for Microsoft Teams and Graph API access with comprehensive messaging, search, and user management capabilities.

everything · Summary

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

teams-mcp · Use cases

  • Automating Microsoft Teams communications and workflows for business processes
  • Building AI assistants that can search and retrieve information from Teams conversations and channels
  • Integrating organizational chat data into larger AI systems for analysis and response

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

teams-mcp · Install

Installation

To use this MCP server in Cursor/Claude/VS Code, add the following configuration:

{
  "mcpServers": {
    "teams-mcp": {
      "command": "npx",
      "args": ["-y", "@floriscornel/teams-mcp@latest"]
    }
  }
}

npm installation

npm install @floriscornel/teams-mcp

Authentication

npx @floriscornel/teams-mcp@latest authenticate  # Full access
npx @floriscornel/teams-mcp@latest authenticate --read-only  # Read-only access

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.