anysearch-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
anysearch-mcp-server by anysearch-ai | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 221 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | SearchAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | — | TypeScript |
| Last commit | this month | this month |
anysearch-mcp-server · Summary
Unified real-time search MCP server supporting web, domain-specific, batch search and content extraction.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
anysearch-mcp-server · Use cases
- Real-time information retrieval for AI assistants across multiple domains
- Batch processing multiple search queries simultaneously for efficiency
- Content analysis and summarization from specific web pages or documents
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
anysearch-mcp-server · Install
Streamable HTTP (Recommended)
For Claude Desktop (2025.6+):
{
"mcpServers": {
"anysearch": {
"type": "streamable-http",
"url": "https://api.anysearch.com/mcp",
"headers": {
"Authorization": "Bearer ${ANYSEARCH_API_KEY}"
}
}
}
}For stdio transport (using mcp-remote):
{
"mcpServers": {
"anysearch": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.anysearch.com/mcp",
"--header",
"Authorization: Bearer ${ANYSEARCH_API_KEY}"
]
}
}
}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