Jina AI Remote MCP Server
A remote Model Context Protocol (MCP) server that provides access to Jina Reader, Embeddings and Reranker APIs including URL-to-markdown, web search, image search, and embeddings/reranker toolings.
{
"mcpServers": {
"jina-mcp-server": {
"url": "https://mcp.jina.ai/sse",
"headers": {
"Authorization": "Bearer your_jina_api_key" // optional
}
}
}
}
The server provides the following MCP tools:
Tool | Description | Is Jina API Key Required? |
---|---|---|
read_url |
Extract clean, structured content from web pages as markdown | Optional* |
capture_screenshot_url |
Capture high-quality screenshots of web pages | Optional* |
search_web |
Search the entire web for current information and news | Yes |
search_arxiv |
Search academic papers and preprints on arXiv repository | Yes |
search_image |
Search for images across the web (similar to Google Images) | Yes |
Optional tools work without an API key but have rate limits. For higher rate limits and better performance, use a Jina API key. You can get a free Jina API key from https://jina.ai
Developer Guide
Deploy to Cloudflare Workers
This will deploy your MCP server to a URL like: jina-mcp-server.<your-account>.workers.dev/sse
Local Development
# Clone the repository
git clone https://github.com/jina-ai/MCP.git
cd MCP
# Install dependencies
npm install
# Start development server
npm run start
License
Licensed under the Apache License, Version 2.0. See LICENSE for details.