EVE-University-Wiki-MCP-Server vs memory
并排对比,帮你在这两个 MCP server 之间做选择。
EVE-University-Wiki-MCP-Server by kongyo2 | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 33 | 77 |
| 官方 | — | ✓ |
| 分类 | 网页抓取game知识库 / RAG | 知识库 / RAGAI / LLM 工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 9 个月前 | 本月 |
EVE-University-Wiki-MCP-Server · 概述
提供EVE大学Wiki访问的MCP服务器,带有Wayback Machine回退功能。
memory · 概述
一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。
EVE-University-Wiki-MCP-Server · 使用场景
- EVE Online玩家可以快速搜索关于舰船、模块和游戏机制的信息
- 开发EVE Online应用程序的开发者可以访问官方文档和社区资源
- 为指南或文章研究EVE Online背景和游戏机制的内容创作者
memory · 使用场景
- 通过记住用户偏好、历史和关系来个性化 AI 助手交互
- 构建维护对话历史的上下文感知聊天应用
- 创建在 AI 模型会话间持久化的知识库
EVE-University-Wiki-MCP-Server · 安装
通过Smithery安装
要通过[Smithery](https://smithery.ai/server/@kongyo2/eve-university-wiki-mcp-server)自动为Claude Desktop安装eve-university-wiki-mcp-server:
npx -y @smithery/cli install @kongyo2/eve-university-wiki-mcp-server --client claude手动安装
- 先决条件:Node.js 18+ 和 npm 或 yarn
- 安装依赖项:
npm install- 构建并启动:
npm run build
npm run startClaude Desktop配置
添加到您的Claude Desktop配置中:
{
"mcpServers": {
"eve-university-wiki": {
"command": "npx",
"args": ["tsx", "/path/to/eve-university-mcp/src/server.ts"],
"env": {}
}
}
}memory · 安装
安装
Claude Desktop
添加到你的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
使用一键安装按钮或在 .vscode/mcp.json 中手动配置:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}