一个 MCP 服务器,借助 Claude 提供对 Jina AI 强大网络服务的访问。该服务器实现了三种主要工具,分别为网页阅读和内容提取、网络搜索以及事实核查/定位。
read_webpage
search_web
fact_check
你需要拥有一个 Jina AI API 密钥才能使用此服务器。可免费获取密钥:https://jina.ai/
有两种方法可以使用此服务器:
通过 Smithery 可自动安装 Jina AI for Claude Desktop:
npx -y @smithery/cli install jina-ai-mcp-server --client claude
将以下配置添加到你的 Claude Desktop 配置文件中:
{
"mcpServers": {
"jina-ai-mcp-server": {
"command": "npx",
"args": [
"-y",
"jina-ai-mcp-server"
],
"env": {
"JINA_API_KEY": ""
}
}
}
}
npm install
npm run build
{
"mcpServers": {
"jina-ai-mcp-server": {
"command": "node",
"args": [
"/path/to/jina-ai-mcp-server/dist/index.js"
],
"env": {
"JINA_API_KEY": ""
}
}
}
}
在 MacOS 上:
~/Library/Application Support/Claude/claude_desktop_config.json
在 Windows 上:
%APPDATA%/Claude/claude_desktop_config.json
完成上述步骤后,确保已正确设置 JINA_API_KEY
环境变量。然后启动你的 Claude 应用程序,并确保 MCP 服务器已成功连接。
如果你遇到任何问题,请参考 MCP Inspector 进行调试。