mcp-server-requests vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-requests by coucya | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 7 | ★ 85,748 |
| 30d uses | — | — |
| Score | 37 | 77 |
| Official | — | ✓ |
| Categories | Web ScrapingDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 6 mo ago | this month |
mcp-server-requests · Summary
MCP server for HTTP requests with web fetching, content filtering, and markdown conversion capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-requests · Use cases
- LLMs fetching and processing web content for research or analysis
- Automating API interactions through MCP tool calling
- Web scraping with content filtering and format conversion
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-requests · Install
git clone https://github.com/coucya/mcp-server-requests.git
cd mcp-server-requests
pip install .**Claude Desktop Configuration** Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-server-requests": {
"command": "python",
"args": [
"-m",
"mcp_server_requests"
]
}
}
}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