MCP Catalogs
Home

filesystem vs autoapply-mcp

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

filesystem
by modelcontextprotocol
autoapply-mcp
by preetrajdeo
Stars★ 85,748★ 0
30d uses
Score7736
Official
Categories
File SystemDeveloper ToolsProductivity
Browser AutomationProductivityAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis month2 mo ago

filesystem · Summary

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

autoapply-mcp · Summary

An MCP server that automates job applications by filling forms and uploading resumes via browser automation.

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

autoapply-mcp · Use cases

  • Automatically apply to multiple job postings with a single command
  • Pre-fill standard application fields from saved profile data
  • Auto-upload resumes to application forms
  • Handle complex form fields including dropdowns and file uploads

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.

autoapply-mcp · Install

Setup with Smithery (easiest)

npx -y @smithery/cli mcp add preetrajdeo/autoapply-mcp

Manual configuration

  1. Open Claude Desktop config file:

- Mac: ~/Library/Application Support/Claude/claude_desktop_config.json - Windows: %APPDATA%\Claude\claude_desktop_config.json

  1. Add this configuration (merge with existing content):
{
  "mcpServers": {
    "autoapply": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://autoapply-mcp.onrender.com/sse"]
    }
  }
}
  1. Fully quit and restart Claude Desktop.
Comparison generated from public README + GitHub signals. Last updated automatically.