mcp-screenshot-website-fast vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-screenshot-website-fast by just-every | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 106 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationWeb ScrapingDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-screenshot-website-fast · Summary
MCP server for fast webpage screenshots optimized for AI vision workflows with automatic tiling.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-screenshot-website-fast · Use cases
- Capture website content for AI analysis and processing
- Automatically take screenshots of dynamic web content for documentation
- Create screencasts of web pages with JavaScript injection capabilities
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
mcp-screenshot-website-fast · Install
Installation
Claude Desktop
Add to ~/.claude/config.json:
{
"mcpServers": {
"screenshot-website-fast": {
"command": "npx",
"args": ["-y", "@just-every/mcp-screenshot-website-fast"]
}
}
}VS Code
code --add-mcp '{"name":"screenshot-website-fast","command":"npx","args":["-y","@just-every/mcp-screenshot-website-fast"]}'Raw JSON (works in any MCP client)
{
"mcpServers": {
"screenshot-website-fast": {
"command": "npx",
"args": ["-y", "@just-every/mcp-screenshot-website-fast"]
}
}
}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.