MCP Catalogs
Home

filesystem vs autowpmcp

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

filesystem
by modelcontextprotocol
autowpmcp
by Njengah
Stars★ 85,748★ 21
30d uses
Score7740
Official
Categories
File SystemDeveloper ToolsProductivity
ProductivityDeveloper ToolsAI / LLM Tools
LanguageTypeScriptJavaScript
Last committhis month7 mo ago

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

autowpmcp · Summary

AutoWP MCP server connects Claude to WordPress sites for automated content creation and 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

autowpmcp · Use cases

  • Automated blog post creation and publishing directly from Claude conversations
  • Bulk media management including uploading, organizing and optimizing images
  • WordPress site management through AI including user, taxonomy and content operations

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.

autowpmcp · Install

Installation

  1. Install & Build:
npm install
npm run build
npm start
  1. Configure Claude Desktop:

Add to your Claude Desktop MCP configuration:

{
  "mcpServers": {
    "autowp": {
      "command": "node",
      "args": ["/path/to/your/autowp-mcp/build/index.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.