MCP Jinaai Grounding MCP Server

MCP server for JinaAI grounding

Local serverstdio

What is the MCP Jinaai Grounding MCP server?

Mcp jinaai grounding mcp server lets Claude, Cursor and other MCP clients work with MCP Jinaai Grounding directly. MCP server for JinaAI grounding.

What MCP Jinaai Grounding does

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

Key capabilities

  • 🌐 Advanced web content grounding through Jina.ai Grounding API
  • 🚀 Real-time content verification and fact-checking
  • 📚 Comprehensive web content analysis
  • 🔄 Clean format optimized for LLMs
  • 🎯 Precise content relevance scoring
  • 🏗️ Built on the Model Context Protocol

Tools it exposes

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

  • ground_content — Ground LLM responses with real-time web content using Jina.ai Grounding
  • Setup — The Setup tool exposed by this server
  • Publishing — The Publishing tool exposed by this server

Installing the mcp jinaai grounding mcp server

The server is distributed via npm as mcp-jinaai-grounding, 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 one environment variable: JINAAI_API_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Search and scraping servers exist to fix the single most common failure of any assistant: answering from stale training data instead of what is on the web today. MCP Jinaai Grounding sits in that group, and the shape of its toolset — ground_content, Setup, Publishing — tells you what it is really for. Worth comparing against the other search web scraping 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.
  • Maintained by spences10.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp jinaai grounding 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
ground_contentGround LLM responses with real-time web content using Jina.ai Grounding.
SetupThe Setup tool exposed by this server.
PublishingThe Publishing tool exposed by this server.

How to install the MCP Jinaai Grounding MCP server

{
	"mcpServers": {
		"jinaai-grounding": {
			"command": "node",
			"args": ["-y", "mcp-jinaai-grounding"],
			"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 Grounding to ground content.
  • Use MCP Jinaai Grounding to Setup.
  • Use MCP Jinaai Grounding to Publishing.

Frequently asked questions

It connects MCP Jinaai Grounding to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (ground_content, 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 Grounding directly.