MCP Catalogs
Home

wenyan-mcp vs filesystem

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

wenyan-mcp
by caol64
filesystem
by modelcontextprotocol
Stars★ 1,225★ 85,748
30d uses
Score5377
Official
Categories
ProductivityAI / LLM ToolsCommunication
File SystemDeveloper ToolsProductivity
LanguageJavaScriptTypeScript
Last commit1 mo agothis month

wenyan-mcp · Summary

Wenyan MCP Server enables AI to automatically format Markdown and publish to WeChat Official Accounts.

filesystem · Summary

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

wenyan-mcp · Use cases

  • AI-assisted content creation with automatic formatting for WeChat Official Accounts
  • Automated publishing workflow using AI agents and MCP tools
  • Multi-account management for team-based content publishing

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

wenyan-mcp · Install

Installation

npm install -g @wenyan-md/mcp

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "wenyan-mcp": {
      "command": "wenyan-mcp",
      "env": {
        "WECHAT_APP_ID": "your_app_id",
        "WECHAT_APP_SECRET": "your_app_secret"
      }
    }
  }
}

Server Mode Configuration

For remote publishing:

{
  "mcpServers": {
    "wenyan-mcp": {
      "command": "wenyan-mcp",
      "args": ["--server", "https://api.example.com", "--api-key", "your-api-key"]
    }
  }
}

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.