Jina AI

v1.0.0Search & Data Extractionstable

Provides access to Jina's web search, content extraction, image search, and AI-powered reranking tools through a comprehensive suite of URL processing and semantic analysis capabilities. Enables users to search the web, extract clean markdown from UR

mcpmcp-server
Share:
689
Stars
0
Downloads
0
Weekly
0/5

What is Jina AI?

Jina AI is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to provides access to jina's web search, content extraction, image search, and ai-powered reranking tools through a comprehensive suite of url processing and semantic analysis capabilities. enables users...

Provides access to Jina's web search, content extraction, image search, and AI-powered reranking tools through a comprehensive suite of URL processing and semantic analysis capabilities. Enables users to search the web, extract clean markdown from UR

This server falls under the Search & Data Extraction category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • Provides access to Jina's web search, content extraction, im

Use Cases

Search the web and extract clean content using Jina's tools through MCP. Rerank search results with AI-powered semantic analysis. Extract structured data and perform image search operations.
jina-ai

Maintainer

LicenseApache 2.0
Languagetypescript
Versionv1.0.0
UpdatedMay 22, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx jina-ai-remote-mcp-server

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Jina AI

The Jina AI Remote MCP Server is a hosted, streamable-HTTP MCP endpoint that gives AI assistants access to Jina's suite of 19+ web intelligence tools, including web search, URL content extraction, ArXiv and SSRN academic search, image search, semantic reranking, text classification, and query expansion. It connects directly to Jina's cloud APIs at mcp.jina.ai, so no local server process is needed. Developers and researchers use it to give Claude the ability to read live web content, find academic papers, and perform semantic analysis without writing custom integrations.

Prerequisites

  • A Jina AI API key (free tier available at jina.ai)
  • An MCP client that supports HTTP/SSE transport (Claude Code, Cursor, or any MCP 2025-03-26 client)
  • Node.js 18+ installed if using mcp-remote as a proxy for clients without native HTTP MCP support
  • No local server installation required — the server runs on Jina's infrastructure
1

Obtain a Jina API key

Visit jina.ai to sign up and generate a free API key. Some tools work without a key but rate limits are very low.

2

Add the server to Claude Code (native HTTP support)

Claude Code supports remote MCP servers natively. Use this one-line command to add the Jina server at the user scope.

claude mcp add -s user --transport http jina https://mcp.jina.ai/v1 \
  --header "Authorization: Bearer ${JINA_API_KEY}"
3

Configure for clients without native HTTP transport

For Claude Desktop or other clients that only support stdio, use the mcp-remote proxy package to bridge to the HTTP endpoint.

{
  "mcpServers": {
    "jina": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.jina.ai/v1",
        "--header",
        "Authorization: Bearer ${JINA_API_KEY}"
      ],
      "env": {
        "JINA_API_KEY": "your-jina-api-key"
      }
    }
  }
}
4

Filter tools to reduce context token usage (optional)

The server exposes 19+ tools by default. Use URL query parameters to include only the tools you need, saving Claude's context window.

# Include only search and read tools:
https://mcp.jina.ai/v1?include_tags=search,read

# Exclude parallel variants:
https://mcp.jina.ai/v1?exclude_tags=parallel
5

Restart your MCP client and test

Restart Claude Code or Claude Desktop. Ask Claude to read a URL or search the web to verify the Jina tools are available.

Jina AI Examples

Client configuration

Claude Desktop configuration using mcp-remote as a proxy to the Jina AI HTTP endpoint.

{
  "mcpServers": {
    "jina": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.jina.ai/v1",
        "--header",
        "Authorization: Bearer ${JINA_API_KEY}"
      ],
      "env": {
        "JINA_API_KEY": "your-jina-api-key"
      }
    }
  }
}

Prompts to try

Once configured, use these prompts to leverage Jina's web intelligence tools through Claude:

- "Read the content at https://example.com/article and summarize the key points"
- "Search the web for the latest research on transformer attention mechanisms"
- "Find recent ArXiv papers on retrieval-augmented generation and list the top 5"
- "Rerank these 10 search results by relevance to my query about vector databases"
- "Extract and classify the text from this PDF URL: https://arxiv.org/pdf/2310.01848"

Troubleshooting Jina AI

401 Unauthorized errors when calling Jina tools

Verify JINA_API_KEY is set correctly in your environment or MCP config env block. The API key must be passed as a Bearer token in the Authorization header. Generate a new key at jina.ai if needed.

Claude Desktop does not recognize the remote MCP server

Claude Desktop does not natively support HTTP MCP transport. Use the mcp-remote proxy approach: set command to 'npx' and args to ['mcp-remote', 'https://mcp.jina.ai/v1', '--header', 'Authorization: Bearer YOUR_KEY'].

Context window fills up quickly with too many Jina tools

Use URL filtering to reduce the tool count. Append '?include_tags=search,read' to the endpoint URL to expose only the tools you need, or use '?exclude_tags=parallel' to remove the parallel variants.

Frequently Asked Questions about Jina AI

What is Jina AI?

Jina AI is a Model Context Protocol (MCP) server that provides access to jina's web search, content extraction, image search, and ai-powered reranking tools through a comprehensive suite of url processing and semantic analysis capabilities. enables users to search the web, extract clean markdown from ur It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Jina AI?

Follow the installation instructions on the Jina AI GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Jina AI?

Jina AI works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Jina AI free to use?

Yes, Jina AI is open source and available under the Apache 2.0 license. You can use it freely in both personal and commercial projects.

Browse More Search & Data Extraction MCP Servers

Explore all search & data extraction servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "jina-ai-remote-mcp-server": { "command": "npx", "args": ["-y", "jina-ai-remote-mcp-server"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Jina AI?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides