wp-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
wp-mcp by Adi-ty | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 32 | 77 |
| Official | — | ✓ |
| Categories | E-commerceAI / LLM ToolsDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 10 mo ago | this month |
wp-mcp · Summary
WordPress MCP server enables AI agents to manage WordPress content through natural language commands.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
wp-mcp · Use cases
- AI-powered content creation and publishing for WordPress blogs
- Voice-controlled website management through AI assistants
- Automated content generation with direct WordPress publishing
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
wp-mcp · Install
npm install @adi.lib/wp-mcpAdd to your client configuration:
{
"servers": {
"wp-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@adi.lib/wp-mcp"],
"env": {
"WP_BASE_URL": "https://your-site.com",
"WP_USERNAME": "admin",
"WP_APP_PASSWORD": "abc1 def2 ghi3 jkl4"
}
}
}
}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.