mcp-server-webscan vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-webscan by bsmi021 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 12 | ★ 85,748 |
| 30d uses | — | — |
| Score | 37 | 77 |
| Official | — | ✓ |
| Categories | Web ScrapingDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 10 mo ago | this month |
mcp-server-webscan · Summary
MCP server for web scanning with page fetching, link extraction, crawling, and sitemap generation.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-webscan · Use cases
- Content analysis by fetching web pages and converting them to Markdown for easier processing
- Website auditing by extracting links and checking for broken links across pages
- SEO analysis by generating XML sitemaps and discovering site structure through crawling
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
mcp-server-webscan · Install
Installing via Smithery
To install Webscan for Claude Desktop automatically via [Smithery](https://smithery.ai/server/mcp-server-webscan):
npx -y @smithery/cli install mcp-server-webscan --client claudeManual Installation
# Clone the repository
git clone <repository-url>
cd mcp-server-webscan
# Install dependencies
npm install
# Build the project
npm run buildClaude Desktop Configuration
{
"mcpServers": {
"webscan": {
"command": "node",
"args": ["path/to/mcp-server-webscan/build/index.js"],
"env": {
"NODE_ENV": "development",
"LOG_LEVEL": "info"
}
}
}
}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