MCP Catalogs
Home

WeChat-MCP vs filesystem

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

WeChat-MCP
by BiboyQG
filesystem
by modelcontextprotocol
Stars★ 191★ 85,748
30d uses
Score4877
Official
Categories
CommunicationProductivityAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit2 mo agothis month

WeChat-MCP · Summary

An MCP server that automates WeChat on macOS, allowing LLMs to read messages and send replies.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

WeChat-MCP · Use cases

  • Automate customer service responses in WeChat business accounts
  • Monitor multiple group chats and prioritize urgent messages
  • Generate and publish daily Moments posts automatically

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

WeChat-MCP · Install

# Install via pip
pip install wechat-mcp-server

# Setup with Claude Desktop
{
  "mcpServers": {
    "wechat-mcp": {
      "type": "stdio",
      "command": "wechat-mcp"
    }
  }
}

Note: Requires macOS Accessibility permissions for your terminal application.

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.