Jina AI MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Jina AI MCP Serversearch for latest AI news and summarize key points"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Jina AI MCP Server (Node.js Version)
An MCP server for Jina AI, providing tools for embeddings, reranking, and generation. This is the Node.js version.
Available Tools
This server provides the following tools, which are direct interfaces to the Jina AI Search Foundation APIs:
embeddings: Creates an embedding vector representing the input text.rerank: Reranks a list of documents based on a query.read: Extracts clean, LLM-friendly content from a single website URL.search: Performs a web search and returns LLM-friendly results.deepsearch: Combines web searching, reading, and reasoning for comprehensive investigation.segment: Splits text into semantic chunks or counts tokens.classify: Performs zero-shot classification for text.get_help: Returns the full Jina AI API documentation used to build this server.
Related MCP server: Jina AI Remote MCP Server
Connecting with MCP Clients
To connect this server to your MCP-compatible client (like Cursor, shell-ai, etc.), you first need to publish this package to NPM or install it from a local path.
Using with npx (After Publishing)
Once the package is published on NPM, you can configure your client to use it with npx. Create a .env file with your JINA_API_KEY in the directory where you run the client, or make sure the environment variable is set.
Example for mcpServers.json:
{
"jina-ai-server": {
"command": "npx",
"args": [
"jina-ai-mcp-server-nodejs"
],
"env": {
"JINA_API_KEY": "your_jina_api_key_here"
}
}
}Note: Passing the API key via env in the configuration is more secure than a global environment variable.
Local Development
Clone the repository.
Install dependencies:
npm installCreate a
.envfile in the root of the project and add your Jina AI API key.echo "JINA_API_KEY=your_jina_ai_api_key_here" > .envRun the server in development mode:
npm run dev
Docker
Building for Production
To compile the TypeScript code to JavaScript:
npm run buildThe compiled output will be in the dist directory.
You can then run the compiled code with:
npm startThis server cannot be deployed
Maintenance
Related MCP Connectors
Web search, AI agent, and content extraction via You.com APIs
Manage SiteGPT chatbots and account resources through the SiteGPT API v2.
Run AI models, create deployments, and manage predictions via cloud API
Ingest, manage, and retrieve documents for RAG-powered AI applications
Related MCP Servers
- AlicenseAqualityCmaintenanceProvides access to Jina AI's web tools including URL-to-markdown conversion, web/image/academic search, screenshot capture, document reranking, and semantic deduplication. Works with optional API key for enhanced rate limits and full feature access.19Apache 2.0
- AlicenseNot gradedqualityCmaintenanceProvides access to Jina AI's web reading, search, embeddings, and reranking capabilities. Enables URL content extraction, web/arXiv/image search, document deduplication, and relevance ranking through natural language.Apache 2.0
- AlicenseNot gradedqualityCmaintenanceProvides web content extraction, search capabilities (web, arXiv, SSRN, images), semantic deduplication, and reranking through Jina AI's Reader, Embeddings, and Reranker APIs.1Apache 2.0
- AlicenseNot gradedqualityNot gradedmaintenanceProvides access to Jina AI's Reader, Embeddings, and Reranker APIs with tools for web scraping, web/image/academic search, content extraction, screenshot capture, document reranking, and semantic deduplication.-