MCP Catalogs
Home

everything vs hwp-mcp

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

everything
by modelcontextprotocol
hwp-mcp
by treesoop
Stars★ 85,748★ 26
30d uses
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsProductivityFile System
LanguageTypeScriptTypeScript
Last committhis month1 mo ago

everything · Summary

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

hwp-mcp · Summary

MCP server enabling AI agents to read, edit, and create Korean HWP/HWPX documents with 34 specialized tools.

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

hwp-mcp · Use cases

  • Processing Korean government documents and extracting structured data from tables and text
  • Automating form filling in Korean business documents using template placeholders
  • Creating new Korean documents programmatically or through AI assistants
  • Extracting embedded images from HWP documents for reuse in other formats

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

hwp-mcp · Install

Installation

Claude Code
claude mcp add hwp-mcp -- npx -y hwp-mcp
Claude Desktop / Cursor / VS Code (settings JSON)
{
  "mcpServers": {
    "hwp-mcp": {
      "command": "npx",
      "args": ["-y", "hwp-mcp"]
    }
  }
}

Node.js 20+ is required.

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