mcp-research-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-research-servershow me available research folders"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP ChatBot L9 —— 混合传输模式
在 L7 的基础上,将 research server 从本地 stdio 子进程改为远程 SSE 服务器。
架构变化
组件 | L7 | L9 |
research server | stdio 子进程 | SSE 远程 (port 8001) |
filesystem server | stdio 子进程 | stdio 子进程 (不变) |
fetch server | stdio 子进程 | stdio 子进程 (不变) |
LLM API | DeepSeek (openai SDK) | DeepSeek (不变) |
Related MCP server: RefMD MCP Server
运行方式
# 1. 启动远程 SSE 服务器(终端 1)
uv run research_server.py
# 2. 启动聊天机器人(终端 2)
uv run mcp_chatbot.py命令
命令 | 说明 |
| 查看可用论文主题文件夹 |
| 查看某主题的论文列表 |
| 列出所有提示模板 |
| 执行提示模板 |
| 退出对话 |
🚀 部署到 Render(远程 SSE 服务)
1. 创建 GitHub 仓库
在 GitHub 创建新仓库(例如 mcp-research-server),不要勾选 "Add a README file"。
2. 推送代码
cd L9/mcp_project
# 初始化 git
git init
git add .
git commit -m "Initial commit: MCP Research Server (SSE)"
# 关联远程仓库并推送
git remote add origin https://github.com/<你的用户名>/mcp-research-server.git
git branch -M main
git push -u origin main3. Render 关联部署
登录 Render Dashboard(用 GitHub 账号)
点击 New + → Web Service
选择刚推送的 GitHub 仓库
Render 自动检测
render.yaml,或者手动配置:Build Command:
pip install -r requirements.txtStart Command:
python research_server.py
点击 Deploy Web Service
4. 更新客户端配置
部署成功后,Render 会分配一个 URL(如 https://mcp-research-server.onrender.com)。
修改 server_config.json 中的 research 服务器 URL:
{
"mcpServers": {
"research": {
"transport": "sse",
"url": "https://mcp-research-server.onrender.com/sse"
}
}
}5. 测试远程服务
# 启动 chatbot(现在连接到远程 Render 服务器)
uv run mcp_chatbot.py注意: Render 免费层在无流量时会休眠,首次请求可能需要 30-60 秒唤醒。
项目文件说明
文件 | 用途 |
| FastMCP SSE 服务器(端口由 PORT 环境变量控制) |
| 混合传输客户端(sse_client + stdio_client) |
| MCP 服务器连接配置 |
| Render Blueprint 部署配置 |
| Render 部署用的 pip 依赖 |
| 本地开发用 uv 依赖 |
| 论文数据存储目录 |
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
- Alicense-qualityFmaintenanceA server that allows AI assistants to search for research papers, read their content, and access related code repositories through the PapersWithCode API.26MIT
- Flicense-qualityDmaintenanceEnables chatbots to browse, search, create, and edit Markdown documents stored in RefMD through a hosted SSE endpoint with OAuth 2.1 authentication.
- Flicense-quality-maintenanceAn academic research server that provides LLMs with full-text search and retrieval access to academic papers and periodicals. It enables research-grounded responses through features like topic filtering and programmatic database expansion.
- AlicenseAqualityAmaintenanceRead, search, and write Obsidian vault notes via Team Relay collaborative server. Supports shared folders, real-time sync, and AI agent access.83MIT
Related MCP Connectors
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
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/XiaoHG/mcp-research-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server