MCP Jinaai Search MCP Server

MCP server for JinaAI search

Local serverstdio

What is the MCP Jinaai Search MCP server?

MCP server for JinaAI search. Exposed over MCP by the mcp jinaai search mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

The functionality of this tool is now available in mcp-omnisearch, which combines multiple MCP tools in one unified package.

  • 🔍 Advanced web search through Jina.ai Search API
  • 🚀 Fast and efficient content retrieval
  • 📄 Clean text extraction with preserved structure
  • 🧠 Content optimised for LLMs
  • 🌐 Support for various content types including documentation
  • 🏗️ Built on the Model Context Protocol

Its toolset

Everything the assistant can do here goes through one of these:

  • search — Search the web and get clean, LLM-friendly content using Jina.ai Reader. Returns top 5 results with URLs and clean content
  • Setup — The Setup tool exposed by this server
  • Publishing — The Publishing tool exposed by this server

Adding it to your client

mcp-jinaai-search on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Configuration

You will need one environment variable: JINAAI_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

Plenty of search and retrieval servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Jinaai Search's toolset — search, Setup, Publishing — is a fair guide to whether it matches your workflow. It is maintained by spences10; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp jinaai search mcp server does with a few real requests.

Available tools

ToolWhat it does
searchSearch the web and get clean, LLM-friendly content using Jina.ai Reader. Returns top 5 results with URLs and clean content.
SetupThe Setup tool exposed by this server.
PublishingThe Publishing tool exposed by this server.

How to install the MCP Jinaai Search MCP server

{
	"mcpServers": {
		"jinaai-search": {
			"command": "node",
			"args": ["-y", "mcp-jinaai-search"],
			"env": {
				"JINAAI_API_KEY": "your-jinaai-api-key"
			}
		}
	}
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
JINAAI_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Jinaai Search to search.
  • Use MCP Jinaai Search to Setup.
  • Use MCP Jinaai Search to Publishing.

Frequently asked questions

It connects MCP Jinaai Search to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (search, Setup, Publishing) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Jinaai Search directly.