MCP Catalogs
Home

MCPWrapper vs everything

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

MCPWrapper
by jm12138
everything
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score3177
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit11 mo agothis month

MCPWrapper · Summary

MCPWrapper is a Python tool that wraps any Python package as an MCP server without code modification.

everything · Summary

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

MCPWrapper · Use cases

  • Quickly exposing existing Python libraries as MCP services without refactoring code
  • Creating MCP servers for internal tools by wrapping utility modules
  • Converting standalone Python packages to work with MCP-compatible clients

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

MCPWrapper · Install

pip install git+https://github.com/jm12138/MCPWrapper

To use with Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "json-mcp": {
      "command": "python",
      "args": ["-m", "mcpwrapper", "--server_name", "json_mcp_server", "--module_name", "json", "--transport", "sse", "--listen", "0.0.0.0", "--port", "8000"]
    }
  }
}

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.