MCP Catalogs
Home

wenyan-mcp vs everything

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

wenyan-mcp
by caol64
everything
by modelcontextprotocol
Stars★ 1,225★ 85,748
30d uses
Score5377
Official
Categories
ProductivityAI / LLM ToolsCommunication
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit1 mo agothis month

wenyan-mcp · Summary

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

everything · Summary

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

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

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

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"]
    }
  }
}

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.