Jina AI MCP Server
Jina AI MCP サーバー
Jina AIのニューラル検索機能とのシームレスな統合を実現するモデルコンテキストプロトコル(MCP)サーバー。シンプルなインターフェースを通じて、セマンティック検索、画像検索、クロスモーダル検索機能を実現します。
🚀 機能
セマンティック検索:自然言語クエリを使用して意味的に類似した文書を検索します
画像検索: 画像のURLを使用して視覚的に類似した画像を検索します
クロスモーダル検索: テキストから画像、または画像からテキストへの検索を実行します
Related MCP server: Jina Web Search MCP
📋 前提条件
Node.js 16以上
Jina AI アカウントと API キー (こちらから取得)
MCP互換環境(例:Cline)
🛠️ インストール
リポジトリをクローンします。
git clone <repository-url>
cd jina-ai-mcp依存関係をインストールします:
npm installJina AI API キーを使用して
.envファイルを作成します。
JINA_API_KEY=your_api_key_hereサーバーを構築します。
npm run build⚙️ 構成
MCP 設定ファイルに次の構成を追加します。
{
"mcpServers": {
"jina-ai": {
"command": "node",
"args": [
"/path/to/jina-ai-mcp/build/index.js"
],
"env": {
"JINA_API_KEY": "your_api_key_here"
}
}
}
}🔍 利用可能なツール
1. セマンティック検索
テキスト ドキュメントに対してセマンティック/ニューラル検索を実行します。
use_mcp_tool({
server_name: "jina-ai",
tool_name: "semantic_search",
arguments: {
query: "search query text",
collection: "your-collection-name",
limit: 10 // optional, defaults to 10
}
})2. 画像検索
画像の URL を使用して類似の画像を検索します。
use_mcp_tool({
server_name: "jina-ai",
tool_name: "image_search",
arguments: {
imageUrl: "https://example.com/image.jpg",
collection: "your-collection-name",
limit: 10 // optional, defaults to 10
}
})3. クロスモーダル検索
テキストから画像、または画像からテキストへの検索を実行します。
use_mcp_tool({
server_name: "jina-ai",
tool_name: "cross_modal_search",
arguments: {
query: "a beautiful sunset", // or image URL for image2text
mode: "text2image", // or "image2text"
collection: "your-collection-name",
limit: 10 // optional, defaults to 10
}
})📝 レスポンスフォーマット
すべての検索ツールは次の形式で結果を返します。
{
content: [
{
type: "text",
text: JSON.stringify({
results: [
{
id: string,
score: number,
data: Record<string, any>
}
]
}, null, 2)
}
]
}🔐 エラー処理
サーバーはさまざまなエラーケースを処理します。
無効なAPIキー
パラメータが不足しているか無効です
API レート制限
ネットワークエラー
無効なコレクション名
すべてのエラーは適切にフォーマットされ、適切なエラー コードとメッセージとともに返されます。
🤝 貢献する
貢献を歓迎します!お気軽にプルリクエストを送信してください。
📄 ライセンス
このプロジェクトは MIT ライセンスに基づいてライセンスされています - 詳細についてはLICENSEファイルを参照してください。
🙏 謝辞
優れたニューラル検索プラットフォームを提供するJina AI
MCP仕様のモデルコンテキストプロトコル
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityFmaintenanceEnables efficient web search integration with Jina.ai's Search API, offering clean, LLM-optimized content retrieval with support for various content types and configurable caching.1263MIT
- AlicenseNot gradedqualityDmaintenanceEnables web content retrieval and semantic search capabilities through the Jina AI API. Provides tools to fetch content from URLs and perform intelligent web searches with natural language queries.3MIT
- 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 gradedqualityDmaintenanceEnables AI assistants to search through structured databases and unstructured content (documents, videos, files) using natural language queries with semantic understanding.MIT
Related MCP Connectors
Search your knowledge bases from any AI assistant using hybrid RAG.
Jina AI Reader/Search MCP — turn any URL into clean LLM-ready markdown, plus web search.
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Sheshiyer/jina-ai-mcp-multimodal-search'
If you have feedback or need assistance with the MCP directory API, please join our Discord server