MCP Jina Ai MCP Server

MCP server for Jina AI services

Local serverstdio

What is the MCP Jina Ai MCP server?

Mcp jina ai mcp server connects MCP Jina Ai to AI assistants that speak the Model Context Protocol. MCP server for Jina AI services.

What MCP Jina Ai does

An MCP server that provides access to Jina AI's powerful web services through Claude. This server implements three main tools:

Tools it exposes

Once connected, the assistant can call these 7 tools directly:

  • Tools — The Tools tool exposed by this server
  • read_webpage — The read_webpage tool exposed by this server
  • search_web — The search_web tool exposed by this server
  • fact_check — The fact_check tool exposed by this server
  • Prerequisites — You'll need a Jina AI API key to use this server. Get one for free at https://jina.ai/
  • Installation — The Installation tool exposed by this server
  • Debugging — Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP

Installing the mcp jina ai mcp server

The server is distributed via npm as @smithery/cli, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 3 environment variables: JINA_API_KEY, YOUR_KEY, OPENAI_API_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.

Requirements

You'll need a Jina AI API key to use this server. Get one for free at https://jina.ai/

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. MCP Jina Ai sits in that group, and the shape of its toolset — Tools, read_webpage, search_web among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 7 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use MCP Jina Ai.
  • Maintained by JoeBuildsStuff.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp jina ai mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
ToolsThe Tools tool exposed by this server.
read_webpageThe read_webpage tool exposed by this server.
search_webThe search_web tool exposed by this server.
fact_checkThe fact_check tool exposed by this server.
PrerequisitesYou'll need a Jina AI API key to use this server. Get one for free at https://jina.ai/
InstallationThe Installation tool exposed by this server.
DebuggingSince MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector):

How to install the MCP Jina Ai MCP server

{
  "mcpServers": {
    "jina-ai-mcp-server": {
      "command": "node",
      "args": [
        "/path/to/jina-ai-mcp-server/dist/index.js"
      ],
      "env": {
        "JINA_API_KEY": "<YOUR_KEY>"
      }
    }
  }
}

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

Configuration

You'll need a Jina AI API key to use this server. Get one for free at https://jina.ai/

VariableDescriptionRequired
JINA_API_KEYCredential the server authenticates with.Yes
YOUR_KEYCredential the server authenticates with.Yes
OPENAI_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Jina Ai to Tools.
  • Use MCP Jina Ai to read webpage.
  • Use MCP Jina Ai to search web.

Frequently asked questions

It connects MCP Jina Ai to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (Tools, read_webpage, search_web, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Jina Ai directly.