MCP Catalogs
Home

everything vs autoapply-mcp

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

everything
by modelcontextprotocol
autoapply-mcp
by preetrajdeo
Stars★ 85,748★ 0
30d uses
Score7736
Official
Categories
Developer ToolsAI / LLM ToolsOther
Browser AutomationProductivityAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis month2 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

autoapply-mcp · Summary

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

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.