MCP Catalogs
Home

mcp-server-chart vs mcp-teams-server

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

mcp-server-chart
by antvis
mcp-teams-server
by InditexTech
Stars★ 4,068★ 373
30d uses10,239
Score8450
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
CommunicationProductivityDeveloper Tools
LanguageTypeScriptPython
Last committhis monththis month

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

mcp-teams-server · Summary

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

mcp-server-chart · Use cases

  • Data analysts creating visual reports from datasets
  • AI assistants generating custom charts based on user requests
  • Web applications embedding visualization capabilities via HTTP API

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

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For Desktop Apps (e.g., Claude Desktop, VSCode):

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "npx",
      "args": ["-y", "@antv/mcp-server-chart"]
    }
  }
}

For Windows:

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
    }
  }
}

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