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 | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Browser AutomationProductivityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 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-everythingautoapply-mcp · Install
Setup with Smithery (easiest)
npx -y @smithery/cli mcp add preetrajdeo/autoapply-mcpManual configuration
- Open Claude Desktop config file:
- Mac: ~/Library/Application Support/Claude/claude_desktop_config.json - Windows: %APPDATA%\Claude\claude_desktop_config.json
- Add this configuration (merge with existing content):
{
"mcpServers": {
"autoapply": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://autoapply-mcp.onrender.com/sse"]
}
}
}- Fully quit and restart Claude Desktop.