EVE-University-Wiki-MCP-Server vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
EVE-University-Wiki-MCP-Server by kongyo2 | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 33 | 76 |
| Official | — | ✓ |
| Categories | Web ScrapinggameKnowledge Graph | Web ScrapingAI / 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.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
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
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
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": {}
}
}
}fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}