AuthorProfileMCP vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
AuthorProfileMCP by alperenkocyigit | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 34 | 77 |
| 官方 | — | ✓ |
| 分类 | 知识库 / RAGAI / LLM 工具其它 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 6 个月前 | 本月 |
AuthorProfileMCP · 概述
分析学术作者网络和研究合作的MCP服务器,可提取学者档案关键词。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
AuthorProfileMCP · 使用场景
- 学术研究合作发现
- 通过作者关键词分析研究趋势
- 构建学术网络可视化
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
AuthorProfileMCP · 安装
# 克隆仓库
git clone https://github.com/alperenkocyigit/AuthorProfileMCP.git
cd AuthorProfileMCP
# 创建虚拟环境
python -m venv venv
source venv/bin/activate # Windows系统: venv\Scripts\activate
# 安装依赖
pip install -r requirements.txt
# 运行服务器
python server.py对于Claude Desktop,添加到 claude_desktop_config.json:
{
"mcpServers": {
"author-profile": {
"command": "python",
"args": ["/path/to/AuthorProfileMCP/server.py"]
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything