claudeus-wp-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
claudeus-wp-mcp by deus-h | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 142 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityOther | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
claudeus-wp-mcp · Summary
A comprehensive MCP server with 145 WordPress management tools for content, media, users, and site operations.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
claudeus-wp-mcp · Use cases
- Automate WordPress content creation and management workflows
- Monitor and diagnose site health issues proactively
- Integrate WordPress operations with Claude AI for intelligent site management
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
claudeus-wp-mcp · Install
Installation
Via NPM (Recommended):
npm install -g claudeus-wp-mcpFor Development:
git clone https://github.com/deus-h/claudeus-wp-mcp
cd claudeus-wp-mcp
pnpm install
pnpm buildConfiguration
- Create a
wp-sites.jsonfile with your WordPress sites configuration:
{
"default_test": {
"URL": "https://your-site.com",
"USER": "admin",
"PASS": "your-application-password",
"authType": "basic"
}
}- Add to Claude Desktop configuration:
{
"mcpServers": {
"claudeus-wp-mcp": {
"command": "npx",
"args": ["-y", "claudeus-wp-mcp"],
"env": {
"WP_SITES_PATH": "/absolute/path/to/your/wp-sites.json"
}
}
}
}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.