深度搜索MCP服务器
生产准备就绪 模型上下文协议(MCP) 服务器提供全面的深度搜索功能,包括网络搜索、内容提取和人工智能驱动的研究。

特性
- 网页搜索 -在网上搜索任何主题,并获得全面的结果
- 内容提取 -从任何URL提取干净、可读的内容
- 深入研究 -多源研究,包括总结和关键发现
- 新闻搜索 -查找任何主题的最新新闻文章
- 学术搜索 -发现学术论文和研究内容
快速开始
连接到您的AI助手
将此配置添加到您的MCP客户端(例如Cursor、Claude Desktop):
{
"mcpServers": {
"deep-search": {
"url": "https://deep-search-mcp.vercel.app/api/mcp"
}
}
}对于光标
添加到 .cursor/mcp.json:
{
"mcpServers": {
"deep-search": {
"url": "https://deep-search-mcp.vercel.app/api/mcp"
}
}
}可用工具
| 工具 | 说明 | 参数 |
|---|---|---|
web_search | 在网上搜索信息 | query (必填), maxResults (可选,1-20) |
extract_content | 从URL提取内容 | url (必填) |
deep_research | 综合多源研究 | query (必填), depth (可选,1-5) |
news_search | 搜索新闻文章 | query (必填), maxResults (可选,1-20) |
academic_search | 搜索学术/研究内容 | query (必填), maxResults (可选,1-20) |
自我寄宿
先决条件
- Node.js 20+
- npm、yarn或pnpm
安装
# Clone the repository
git clone https://github.com/LikhonSheikh404/deep-search-mcp.git
cd deep-search-mcp
# Install dependencies
npm install
# Copy environment file
cp .env.example .env
# Start development server
npm run dev部署到Vercel
- 分叉此存储库
- 导入到Vercel
- 部署!
或者使用CLI:
# Install Vercel CLI
npm i -g vercel
# Deploy
vercelMCP检验员测试
npx @modelcontextprotocol/inspector@latest http://localhost:3000然后打开http://127.0.0.1:6274测试你的工具。
API终点
| 端点 | 描述 |
|---|---|
GET/POST /api/mcp | MCP服务器端点 |
GET /.well-known/oauth-protected-resource | OAuth元数据(用于经过身份验证的设置) |
技术栈
- 框架:Next.js 15(应用路由器)
- 语言:TypeScript
- MCP-SDK:mcp处理程序
- 部署:Vercel(无服务器+流体计算)
- 运输:流式HTTP(高效,无持久连接)
建筑
src/
├── app/
│ ├── api/
│ │ └── [transport]/
│ │ └── route.ts # MCP server endpoint
│ ├── .well-known/
│ │ └── oauth-protected-resource/
│ │ └── route.ts # OAuth metadata
│ ├── page.tsx # Landing page
│ └── layout.tsx # Root layout
├── lib/
│ └── search-engine.ts # Search functionality
└── types/
└── mcp.ts # Type definitions环境变量
| 变量 | 描述 | 必填 |
|---|---|---|
NEXT_PUBLIC_APP_URL | 部署的公共URL | 否 |
贡献
欢迎投稿!请随时提交拉取请求。
许可证
MIT许可证-您可以在自己的项目中自由使用。
作者
由Matrix Agent构建
______________________________________________________________________
资源:
