
MCP
by jina-ai·★ 680·Score 54
Jina AI Remote MCP server provides web search, content reading, and AI tools with URL filtering capabilities.
Overview
This is a robust remote MCP server developed by Jina AI that exposes numerous tools for web scraping, content extraction, and AI-powered operations. It includes 19 different tools categorized into search, parallel operations, reading, utilities, and reranking functions. The server uses Streamable HTTP transport (MCP spec 2025-03-26) and supports API key authentication for higher rate limits. A unique feature is its ability to filter tools via query parameters before registering them with MCP clients, which helps optimize context window usage for LLMs with limited capacity.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server when you need comprehensive web scraping, search, and content processing capabilities, especially when working with academic research or requiring both single and parallel processing of web content.
When NOT to choose this
Avoid this server if you need offline functionality, have concerns about vendor lock-in with Jina AI, or require extensive customization beyond what the API provides.
Tools this server exposes
12 tools extracted from the READMEprimerGet current contextual information for localized, time-aware responses
read_urlExtract clean, structured content from web pages as markdown
search_webSearch the entire web for current information and news
search_arxivSearch academic papers and preprints on arXiv repository
search_ssrnSearch academic papers on SSRN (Social Science Research Network)
search_imagesSearch for images across the web similar to Google Images
expand_queryExpand and rewrite search queries based on query expansion model
parallel_search_webRun multiple web searches in parallel for comprehensive coverage
sort_by_relevanceRerank documents by relevance to a query
classify_textClassify texts into user-defined labels
deduplicate_stringsGet top-k semantically unique strings from a collection
extract_pdfExtract figures, tables, and equations from PDF documents
Comparable tools
Installation
Installation
For clients supporting remote MCP servers:
{
"mcpServers": {
"jina-mcp-server": {
"url": "https://mcp.jina.ai/v1",
"headers": {
"Authorization": "Bearer ${JINA_API_KEY}" // optional
}
}
}
}For clients not supporting remote MCP servers yet, use mcp-remote as a proxy:
{
"mcpServers": {
"jina-mcp-server": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.jina.ai/v1",
"--header",
"Authorization: Bearer ${JINA_API_KEY}"
]
}
}
}For Claude Code:
claude mcp add -s user --transport http jina https://mcp.jina.ai/v1 \
--header "Authorization: Bearer ${JINA_API_KEY}"FAQ
- How can I limit which tools are registered to save context window space?
- Use query parameters on the endpoint URL such as ?exclude_tags=parallel or ?include_tools=read_url,search_web to filter which tools are registered with the MCP client.
- Why does Claude Desktop show 'Server disconnected' on Windows?
- This is a known bug with spaces in args not being escaped properly. Work around it by setting Authorization:${AUTH_HEADER} in args and AUTH_HEADER='Bearer <key>' in env variables.
Compare MCP with
Last updated · Auto-generated from public README + GitHub signals.