hwpx-mcp-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
hwpx-mcp-server by airmang | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 57 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | File SystemProductivityAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
hwpx-mcp-server · Summary
MCP server for AI agents to read, edit, inspect, and validate local HWPX documents without Hangul word processor.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
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
hwpx-mcp-server · Install
Installation
Using uv:
uvx hwpx-mcp-serverOr with pip:
pip install hwpx-mcp-server
hwpx-mcp-serverClaude 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)
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.