AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Jina Mcp Tools

mcp-psycharch-jina-mcp-tools · by PsychArch

A Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.

No reviews yet
0 installs
46 views
0.0% view→install

Install

$ agentstack add mcp-psycharch-jina-mcp-tools

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-psycharch-jina-mcp-tools)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Jina Mcp Tools? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Jina AI MCP Tools

A Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.

Features

This MCP server provides access to the following Jina AI APIs:

  • Web Reader - Extract content from web pages using r.jina.ai
  • Web Search - Search the web using s.jina.ai or svip.jina.ai (configurable via --search-endpoint)

Prerequisites

  1. Jina AI API Key (Optional) - Get a free API key from https://jina.ai/?sui=apikey for enhanced features
  2. Node.js - Version 16 or higher

MCP Server

Using stdio Transport (Default)

For local integrations spawned by another process (e.g., Claude Desktop, VS Code, Cursor):

{
  "mcpServers": {
    "jina-mcp-tools": {
      "command": "npx",
      "args": [
        "jina-mcp-tools",
        "--transport", "stdio",
        "--tokens-per-page", "15000",
        "--search-endpoint", "standard"
      ],
      "env": {
        "JINA_API_KEY": "your_jina_api_key_here_optional"
      }
    }
  }
}

Using HTTP Transport

For remote server deployments accessible via HTTP:

Start the server:

# With API key
JINA_API_KEY=your_api_key npx jina-mcp-tools --transport http --host 127.0.0.1 --port 3000

# Without API key (reader tool only, binds to 127.0.0.1 by default)
npx jina-mcp-tools --transport http --port 3000

Connect from MCP clients:

  • MCP Inspector: npx @modelcontextprotocol/inspectorhttp://localhost:3000/mcp
  • Claude Code: claude mcp add --transport http jina-tools http://localhost:3000/mcp
  • VS Code: code --add-mcp '{"name":"jina-tools","type":"http","url":"http://localhost:3000/mcp"}'

CLI Options:

  • --transport - Transport type: stdio or http (default: stdio)
  • --host - Host/interface to bind in HTTP mode (default: 127.0.0.1)
  • --port - HTTP server port (default: 3000, only for HTTP transport)
  • --tokens-per-page - Tokens per page for pagination (default: 15000)
  • --search-endpoint - Search endpoint to use: standard (s.jina.ai) or vip (svip.jina.ai) (default: standard)
  • --cache-size - Reader cache size in URLs (default: 50)
  • --help - Show the built-in CLI help

Proxy Environment Variables

Outbound HTTP requests now honor standard proxy environment variables. This applies to jina_reader, jina_search, and jina_search_vip.

  • Supported proxy variables: HTTP_PROXY, HTTPS_PROXY, ALL_PROXY
  • Lowercase variants are also supported: http_proxy, https_proxy, all_proxy
  • Exclusions are respected via NO_PROXY / no_proxy

Example:

HTTPS_PROXY=http://proxy.internal:8080 npx jina-mcp-tools --transport stdio

Available Tools

jina_reader

Extract and read web page content.

Parameters:

  • url - URL to read (required)
  • page - Page number for paginated content (default: 1)
  • customTimeout - Timeout override in seconds (optional)

Features:

  • Automatic pagination for large documents
  • LRU cache (50 URLs) for instant subsequent page requests
  • GitHub file URLs automatically converted to raw content URLs
  • Tries Accept: text/markdown first for a maintained allowlist of markdown-capable docs/blog hosts, then falls back to r.jina.ai on fetch failure or empty responses

jinasearch / jinasearch_vip

Search the web. Returns partial content; use jina_reader for full content. Requires API key.

Tool registered depends on --search-endpoint:

  • jina_searchstandard (s.jina.ai, default)
  • jina_search_vipvip (svip.jina.ai)

Parameters:

  • query - Search query (required)
  • count - Number of results (default: 5)
  • siteFilter - Limit to specific domain (e.g., "github.com")

License

MIT

Links

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.