mcp-server-jina-java

MCP.Pizza Chef: GARCHENG

mcp-server-jina-java is an MCP server that integrates with the Jina Reader API to enable web content searching and fetching. It provides tools to read and fetch content from URLs and perform web searches to retrieve search engine results pages (SERP). This server facilitates real-time web data retrieval for LLMs, enhancing their ability to access and utilize live web information securely and efficiently.

Use This MCP server To

Fetch and read content from any web URL in real time Perform keyword-based web searches and retrieve SERP data Integrate live web content into AI workflows and agents Enable LLMs to access up-to-date web information dynamically Automate data extraction from web pages for analysis Support multi-step reasoning with real-time web context

README

MCP Server(Jina Reader API)

A Model Context Protocol server that provides web content searching and fetching capabilities(through jina reader api https://jina.ai/reader/).

Available Tools

  • readAndFetchContent
    

    - read a URL and fetch its content.

    • url (string, required): URL to fetch
  • searchAndGetSERP
    

    - search the web and get SERP.

    • keyword (string, required): The keyword to search on the web

Configuration

"mcpServers": {
   "mcp-server-jina-java": {
      "command": "java",
      "args": [
        "-Dspring.ai.mcp.server.stdio=true",
        "-jar",
        "/the path of the jar/mcp-server-jina-java-1.0-SNAPSHOT.jar",
        "jina.api.api-key= Your jina key"
      ]
    }
}

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

mcp-server-jina-java FAQ

How do I configure the mcp-server-jina-java?
Configure it by specifying the Java command, jar path, and your Jina API key in the mcpServers section.
What tools does this MCP server provide?
It provides readAndFetchContent to fetch URL content and searchAndGetSERP to perform web searches.
Is the mcp-server-jina-java open source?
Yes, it is licensed under the MIT License, allowing free use and modification.
Can this server fetch content from any website?
It can fetch content from most publicly accessible websites, subject to the Jina Reader API capabilities.
How does this server enhance LLM capabilities?
It enables LLMs to access live web content and search results, improving context and response relevance.
What programming language is this MCP server implemented in?
It is implemented in Java and runs as a Java application.
Can I use this server with multiple LLM providers?
Yes, it is provider-agnostic and works with OpenAI, Claude, Gemini, and others.
How do I secure my Jina API key?
Store your API key securely and avoid exposing it in public repositories or logs.