MCP Catalogs
HomeMCP screenshot

MCP

by jina-ai·680·Score 54

Jina AI Remote MCP server provides web search, content reading, and AI tools with URL filtering capabilities.

ai-llmweb-scrapingdeveloper-tools
69
Forks
14
Open issues
2 mo ago
Last commit
2d ago
Indexed

Overview

This is a robust remote MCP server developed by Jina AI that exposes numerous tools for web scraping, content extraction, and AI-powered operations. It includes 19 different tools categorized into search, parallel operations, reading, utilities, and reranking functions. The server uses Streamable HTTP transport (MCP spec 2025-03-26) and supports API key authentication for higher rate limits. A unique feature is its ability to filter tools via query parameters before registering them with MCP clients, which helps optimize context window usage for LLMs with limited capacity.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Web research and content extraction for academic papers and news articles
you:AI-powered document analysis and classification
you:Parallel web search for comprehensive information gathering
you:How can I limit which tools are registered to save context window space?
you:Why does Claude Desktop show 'Server disconnected' on Windows?

When to choose this

Choose this server when you need comprehensive web scraping, search, and content processing capabilities, especially when working with academic research or requiring both single and parallel processing of web content.

When NOT to choose this

Avoid this server if you need offline functionality, have concerns about vendor lock-in with Jina AI, or require extensive customization beyond what the API provides.

Tools this server exposes

12 tools extracted from the README
  • primer

    Get current contextual information for localized, time-aware responses

  • read_url

    Extract clean, structured content from web pages as markdown

  • search_web

    Search the entire web for current information and news

  • search_arxiv

    Search academic papers and preprints on arXiv repository

  • search_ssrn

    Search academic papers on SSRN (Social Science Research Network)

  • search_images

    Search for images across the web similar to Google Images

  • expand_query

    Expand and rewrite search queries based on query expansion model

  • parallel_search_web

    Run multiple web searches in parallel for comprehensive coverage

  • sort_by_relevance

    Rerank documents by relevance to a query

  • classify_text

    Classify texts into user-defined labels

  • deduplicate_strings

    Get top-k semantically unique strings from a collection

  • extract_pdf

    Extract figures, tables, and equations from PDF documents

Comparable tools

brave-search-mcpduckduckgo-search-mcpfirecrawl-mcp

Installation

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}"

FAQ

How can I limit which tools are registered to save context window space?
Use query parameters on the endpoint URL such as ?exclude_tags=parallel or ?include_tools=read_url,search_web to filter which tools are registered with the MCP client.
Why does Claude Desktop show 'Server disconnected' on Windows?
This is a known bug with spaces in args not being escaped properly. Work around it by setting Authorization:${AUTH_HEADER} in args and AUTH_HEADER='Bearer <key>' in env variables.

Compare MCP with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.