MCP Directory

LinkedIn MCP Server vs Microsoft Teams MCP Server (Inditex)

A side-by-side comparison of two Communication servers — tools, transport, auth, maintenance, and copy-paste config for each.

 LinkedIn MCP Server

Lets agents read LinkedIn profiles, companies, jobs and messages through your own logged-in browser session.

Unverified
stdio (local)
No auth
Python
Microsoft Teams MCP Server (Inditex)

Read, post and reply to Teams channel messages and mention members via Azure bot

Verified
stdio (local)
API key
Python
CategoryCommunicationCommunication
LanguagePythonPython
Transportstdio (local)stdio (local)
AuthNoneAPI key
GitHub stars2.6k379
Last commit1 month ago1 month ago
Verified
Actively maintained
Installuvx mcp-server-linkedin@latestdocker run -i --rm --env-file .env ghcr.io/inditextech/mcp-teams-server:latest
RepoOpen Open

Verdict

Pick LinkedIn MCP Server if you prefer the more popular, battle-tested option, and you want zero-setup with no API key.

Pick Microsoft Teams MCP Server (Inditex) if you want a verified, documented setup.

Add LinkedIn MCP Server

Install / run
uvx mcp-server-linkedin@latest

Paste into ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "linkedin-mcp-server": {
      "command": "uvx",
      "args": [
        "mcp-server-linkedin@latest"
      ],
      "env": {
        "UV_HTTP_TIMEOUT": "300"
      }
    }
  }
}

Requires `uv` (the Python package runner). Install it from https://docs.astral.sh/uv/ if `uvx` is not found.

Add Microsoft Teams MCP Server (Inditex)

Install / run
docker run -i --rm --env-file .env ghcr.io/inditextech/mcp-teams-server:latest

Paste into ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "microsoft-teams-mcp-server-inditex": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "TEAMS_APP_ID",
        "-e",
        "TEAMS_APP_PASSWORD",
        "-e",
        "TEAMS_APP_TYPE",
        "-e",
        "TEAMS_APP_TENANT_ID",
        "-e",
        "TEAM_ID",
        "-e",
        "TEAMS_CHANNEL_ID",
        "ghcr.io/inditextech/mcp-teams-server:latest"
      ],
      "env": {
        "TEAMS_APP_ID": "<your-azure-app-id>",
        "TEAMS_APP_PASSWORD": "<your-azure-app-password>",
        "TEAMS_APP_TYPE": "SingleTenant",
        "TEAMS_APP_TENANT_ID": "<your-azure-tenant-id>",
        "TEAM_ID": "<your-teams-team-id>",
        "TEAMS_CHANNEL_ID": "<your-teams-channel-id>"
      }
    }
  }
}

Requires Docker to be installed and running.

FAQ

LinkedIn MCP Server or Microsoft Teams MCP Server (Inditex) — which is better?

Pick LinkedIn MCP Server if you prefer the more popular, battle-tested option, and you want zero-setup with no API key. Pick Microsoft Teams MCP Server (Inditex) if you want a verified, documented setup.

Can I use both LinkedIn MCP Server and Microsoft Teams MCP Server (Inditex)?

Yes — MCP clients let you enable multiple servers at once. Add both configs to your client's mcpServers and use whichever tool fits the task.

Do LinkedIn MCP Server and Microsoft Teams MCP Server (Inditex) work with Claude, Cursor and Windsurf?

Both do. Copy the per-client config below into Claude Desktop, Cursor, or Windsurf.