filesystem vs hwp-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | hwp-mcp by treesoop | |
|---|---|---|
| Stars | ★ 85,748 | ★ 26 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsProductivityFile System |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
hwp-mcp · Summary
MCP server enabling AI agents to read, edit, and create Korean HWP/HWPX documents with 34 specialized tools.
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
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
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.
hwp-mcp · Install
Installation
Claude Code
claude mcp add hwp-mcp -- npx -y hwp-mcpClaude Desktop / Cursor / VS Code (settings JSON)
{
"mcpServers": {
"hwp-mcp": {
"command": "npx",
"args": ["-y", "hwp-mcp"]
}
}
}Node.js 20+ is required.