EVE-University-Wiki-MCP-Server vs memory
Side-by-side comparison to help you pick between these two MCP servers.
EVE-University-Wiki-MCP-Server by kongyo2 | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 33 | 77 |
| Official | — | ✓ |
| Categories | Web ScrapinggameKnowledge Graph | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 9 mo ago | this month |
EVE-University-Wiki-MCP-Server · Summary
MCP server providing access to EVE University Wiki with Wayback Machine fallback.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
EVE-University-Wiki-MCP-Server · Use cases
- EVE Online players can quickly search for information about ships, modules, and gameplay mechanics
- Developers building EVE Online applications can access official documentation and community resources
- Content creators researching EVE Online lore and game mechanics for guides or articles
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
EVE-University-Wiki-MCP-Server · Install
Installing via Smithery
To install eve-university-wiki-mcp-server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@kongyo2/eve-university-wiki-mcp-server):
npx -y @smithery/cli install @kongyo2/eve-university-wiki-mcp-server --client claudeManual Installation
- Prerequisites: Node.js 18+ and npm or yarn
- Install dependencies:
npm install- Build and start:
npm run build
npm run startClaude Desktop Configuration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"eve-university-wiki": {
"command": "npx",
"args": ["tsx", "/path/to/eve-university-mcp/src/server.ts"],
"env": {}
}
}
}memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .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"]
}
}
}