MCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
MCP by jina-ai | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 680 | ★ 85,748 |
| 30d uses | — | — |
| Score | 54 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsWeb ScrapingDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
MCP · Summary
Jina AI Remote MCP server provides web search, content reading, and AI tools with URL filtering capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
MCP · Use cases
- Web research and content extraction for academic papers and news articles
- AI-powered document analysis and classification
- Parallel web search for comprehensive information gathering
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 · Install
Installation
For clients supporting remote MCP servers:
{
"mcpServers": {
"jina-mcp-server": {
"url": "https://mcp.jina.ai/v1",
"headers": {
"Authorization": "Bearer ${JINA_API_KEY}" // optional
}
}
}
}For clients not supporting remote MCP servers yet, use mcp-remote as a proxy:
{
"mcpServers": {
"jina-mcp-server": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.jina.ai/v1",
"--header",
"Authorization: Bearer ${JINA_API_KEY}"
]
}
}
}For Claude Code:
claude mcp add -s user --transport http jina https://mcp.jina.ai/v1 \
--header "Authorization: Bearer ${JINA_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