MCP Catalogs
Home

hwpx-mcp-server vs everything

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

hwpx-mcp-server
by airmang
everything
by modelcontextprotocol
Stars★ 57★ 85,748
30d uses
Score4877
Official
Categories
File SystemProductivityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis month

hwpx-mcp-server · Summary

MCP server for AI agents to read, edit, inspect, and validate local HWPX documents without Hangul word processor.

everything · Summary

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

hwpx-mcp-server · Use cases

  • Processing Korean government or school documents in automated workflows
  • Converting HWPX documents to markdown or HTML for web publishing
  • Batch text replacement across multiple HWPX files

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

hwpx-mcp-server · Install

Installation

Using uv:

uvx hwpx-mcp-server

Or with pip:

pip install hwpx-mcp-server
hwpx-mcp-server

Claude Desktop Setup

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "hwpx": {
      "command": "uvx",
      "args": ["hwpx-mcp-server"]
    }
  }
}

Environment Variables

  • HWPX_MCP_MAX_CHARS: Maximum text length (default: 10000)
  • HWPX_MCP_AUTOBACKUP: Create backup before edit (default: 1)
  • HWPX_MCP_ADVANCED: Enable advanced tools (default: 0)

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.