MCP Catalogs
Home

jinaai-mcp-server vs everything

Side-by-side comparison to help you pick between these two MCP servers.

jinaai-mcp-server
by cyanheads
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score3377
Official
Categories
Web ScrapingAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit9 mo agothis month

jinaai-mcp-server · Summary

A production-ready MCP server that enables AI systems to read and extract clean content from webpages using the Jina AI Reader API.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

jinaai-mcp-server · Use cases

  • Automating research by extracting content from multiple articles and documentation sources
  • Enabling AI assistants to access real-time web information for up-to-date responses
  • Integrating web content processing into AI workflows without leaving the host application

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

jinaai-mcp-server · Install

Prerequisites

  • Node.js (>=18.0.0)
  • npm

Installation

Using MCP Client Settings

Add the following to your MCP client's configuration file:

{
  "mcpServers": {
    "jinaai-mcp-server": {
      "command": "npx",
      "args": ["@cyanheads/jinaai-mcp-server"],
      "env": {
        "MCP_TRANSPORT_TYPE": "http",
        "MCP_HTTP_PORT": "3018",
        "JINA_API_KEY": "YOUR_JINA_API_KEY_HERE"
      }
    }
  }
}
From Source
  1. Clone the repository:

``bash git clone https://github.com/cyanheads/jinaai-mcp-server.git cd jinaai-mcp-server ``

  1. Install dependencies:

``bash npm install ``

  1. Build the project:

``bash npm run build ``

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
Comparison generated from public README + GitHub signals. Last updated automatically.