Jina AI MCP Tools by PsychArch
40 score
Integrates Jina AI Search Foundation APIs to provide web page content extraction and search capabilities. It supports automatic pagination, result caching, and both standard and VIP search endpoints for enhanced information retrieval.
Ranked #2528 out of 7050 indexed tools.
Is this your tool? Claim this listing to add maintainer context, get a verified badge, and unlock analytics.
Claim listing → Signal Breakdown
Installs 594
Freshness 5mo ago
Issue Health 100%
Stars 39
Platform Breadth 1 platform
Contributors 5
Description Detailed
How to Improve
Freshness high impact
Stars low impact
Platforms medium impact
Supported Platforms
From the README
# Jina AI MCP Tools
A Model Context Protocol (MCP) server that integrates with [Jina AI Search Foundation APIs](https://docs.jina.ai/).
## 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](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):
```json
{
"mcpServers": {
"jina-mcp-tools": {
"command": "npx",
"args": [
"jina-mcp-tools",
"--transport", "stdio",
"--tokens-per-page", "15000",
"--search-endpoint", "standard"
],
"env": {
"JINA_API_K Read full README on GitHub →