evetycoon-mcp-server vs memory
Side-by-side comparison to help you pick between these two MCP servers.
evetycoon-mcp-server by kongyo2 | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 3 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 77 |
| Official | — | ✓ |
| Categories | E-commerceAI / LLM ToolsOther | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 10 mo ago | this month |
evetycoon-mcp-server · Summary
An MCP server for EVE Online market data, providing access to price statistics, order books, and historical information.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
evetycoon-mcp-server · Use cases
- Analyze EVE Online market trends for specific items across regions
- Track price history and volume statistics for in-game commodities
- Compare market prices between different regions to identify profitable trading routes
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
evetycoon-mcp-server · Install
Installing via Smithery
npx -y @smithery/cli install @kongyo2/evetycoon-mcp-server --client claudeManual Installation
- Clone this repository
- Install dependencies:
npm install- Build the project:
npm run buildFor Claude Desktop
Add to your Claude Desktop configuration:
{
"mcpServers": {
"evetycoon": {
"command": "node",
"args": ["/path/to/evetycoon-mcp-server/dist/index.js"]
}
}
}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"]
}
}
}