SimpleMCPSearchServer

SimpleMCPSearchServer

🚀 简单Jina AI MCP搜索服务器

本MCP服务器为用户提供对Jina AI搜索和抓取工具的访问能力,助力用户高效开展网络搜索与内容抓取工作。

✨ 主要特性

工具列表

  • searchWeb:可在网络上进行搜索。输入格式为:{ query: string; site?: string; }
  • scrapeUrl:用于从指定URL中抓取内容。输入格式为:{ url: string; }
  • performDeepSearch:借助Jina AI执行深度搜索。输入格式为:{ query: string; reasoning_effort?: 'low' | 'medium' | 'high'; no_direct_answer?: boolean; }

📦 安装指南

配置(config.json

运行该服务器需要一个config.json文件,请参考src/config.ts中的完整模式(ConfigSchema)。以下是配置示例:

{
"name": "simple-jina-mcp-server", // 服务器名称用于MCP发现
"version": "1.0.0",              // 服务器版本
"apiKeys": {
"jina": "YOUR_JINA_API_KEY"   // 可选:Jina API密钥
},
"logLevel": "info",             // 可选:debug, info, warn, error(默认为"info")
"transport": "http",            // 可选:"http"或"stdio"(默认:"http")
"port": 3123                    // 可选:HTTP传输的端口(默认:3123)
}

运行步骤

  1. 构建:执行命令npm run build
  2. 启动:执行命令npm start config.json
    • 服务器将按照config.json中指定的传输方式("http"或"stdio")启动。
    • 若使用"HTTP"传输方式,端点为http://localhost: /mcp
  • 0 关注
  • 0 收藏,8 浏览
  • system 提出于 2025-09-23 11:12

相似服务问题