MCP Catalogs
Home

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
Score3377
Official
Categories
Web ScrapinggameKnowledge Graph
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last commit9 mo agothis 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 claude

Manual Installation

  1. Prerequisites: Node.js 18+ and npm or yarn
  2. Install dependencies:
npm install
  1. Build and start:
npm run build
npm run start

Claude 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.