Jina.ai Grounding MCP Server

by spences10

2 stars
Not rated
GitHub

About

Integrates Jina.ai's Grounding API with LLMs for real-time, fact-based web content grounding and analysis, enhancing LLM responses with precise, verified information.

Details

Author
spences10
Repository
spences10/mcp-jinaai-grounding
GitHub stars
2
License
MIT License
Categories
Search, Other, AI, Knowledge Base
Tags
#data

- 🌐 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

Setting up with Highlight

Follow these steps to add this server as a custom Highlight plugin:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Jina.ai Grounding MCP Server
    Command (node, npx, python, etc.) node
    Arguments
    • Argument 1 -y
    • Argument 2 mcp-jinaai-grounding
    Environment
    • JINAAI_API_KEY your-jinaai-api-key

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

This server requires configuration through your MCP client. Here are
examples for different environments:

Add this to your Cline MCP settings:

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

For WSL environments, add this to your Claude Desktop configuration:

{
	"mcpServers": {
		"jinaai-grounding": {
			"command": "wsl.exe",
			"args": [
				"bash",
				"-c",
				"JINAAI_API_KEY=your-jinaai-api-key npx mcp-jinaai-grounding"
			]
		}
	}
}

The server requires the following environment variable:

- JINAAI_API_KEY: Your Jina.ai API key (required)

ground_content

Ground LLM responses with real-time web content using Jina.ai Grounding. Parameters: query (string, required), no_cache (boolean, optional), format (string, optional), token_budget (number, optional), browser_locale (string, optional), stream (boolean, optional), gather_links (boolean, optional), gather_images (boolean, optional), image_caption (boolean, optional), enable_iframe (boolean, optional), enable_shadow_dom (boolean, optional), resolve_redirects (boolean, optional)

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "jina.ai grounding mcp server": {
            "env": {
                "JINAAI_API_KEY": "your-jinaai-api-key"
            },
            "args": [
                "-y",
                "mcp-jinaai-grounding"
            ],
            "command": "node"
        }
    }
}

Linux

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

Macos

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

Windows

{
    "env": [],
    "args": [
        "bash",
        "-c",
        "JINAAI_API_KEY=your-jinaai-api-key npx mcp-jinaai-grounding"
    ],
    "command": "wsl.exe"
}

This repository is no longer maintained.

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

A Model Context Protocol (MCP) server for integrating Jina.ai's Grounding API with LLMs. This server provides efficient and comprehensive web content grounding capabilities, optimized for enhancing LLM responses with factual, real-time web content.

- 🌐 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

This server requires configuration through your MCP client. Here are examples for different environments:

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

For WSL environments, add this to your Claude Desktop configuration:

{ "mcpServers": { "jinaai-grounding": { "command": "wsl.exe", "args": [ "bash", "-c", "JINAAI_API_KEY=your-jinaai-api-key npx mcp-jinaai-grounding" ] } } }

The server requires the following environment variable:

- JINAAI_API_KEY: Your Jina.ai API key (required)

The server implements MCP tools for grounding LLM responses with web content:

Ground LLM responses with real-time web content using Jina.ai Grounding.

- query(string, required): The text to ground with web content
- no_cache(boolean, optional): Bypass cache for fresh results. Defaults to false
- format(string, optional): Response format ("json" or "text"). Defaults to "text"
- token_budget(number, optional): Maximum number of tokens for this request
- browser_locale(string, optional): Browser locale for rendering content
- stream(boolean, optional): Enable stream mode for large pages. Defaults to false
- gather_links(boolean, optional): Gather all links at the end of response. Defaults to false
- gather_images(boolean, optional): Gather all images at the end of response. Defaults to false
- image_caption(boolean, optional): Caption images in the content. Defaults to false
- enable_iframe(boolean, optional): Extract content from iframes. Defaults to false
- enable_shadow_dom(boolean, optional): Extract content from shadow DOM. Defaults to false
- resolve_redirects(boolean, optional): Follow redirect chains to final URL. Defaults to true
- Clone the repository
- Install dependencies:
- Update version in package.json
- Build the project:

Contributions are welcome! Please feel free to submit a Pull Request.

MIT License - see theLICENSEfile for details.

- Built on theModel Context Protocol
- Powered by
Jina.ai Grounding API

Search global news using natural language. Webz.io News Search API returns the most relevant articles and content, with filters for source, country, language, date, sentiment, and category.

Structural AI Search Readiness MCP. Audit, dry-run fixes, rescore, doctor. No LLM rankings.

Efficient web search optimized for LLM-friendly content using the Jina AI API.

A server to query Wikipedia and automatically fact-check information for any LLM with a compatible MCP client.

A Node.js MCP server exposing Ollama's web search and web fetch APIs as MCP tools. TypeScript, stdio transport, npm-publishable.

A comprehensive, production-ready research server (MCP). Provide your LLM clients with real-time access to the web, data, and more.

Fetch, convert, and search AWS documentation pages, with recommendations for related content.

Search campgrounds around the world on campertunity, check availability, and provide booking links.

The Ferryhopper MCP Server exposes ferry routes, schedules and booking redirects so an AI assistant can discover connections across Europe and the Mediterranean and send users to Ferryhopper to complete bookings.

All-in-One SEO & Web Intelligence Toolkit API from FetchSERP.

MCP server that provides read-only access to HyperKitty, the web-based email archive component of Mailman 3.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.