evetycoon-mcp-server vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
evetycoon-mcp-server by kongyo2 | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 3 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 76 |
| Official | — | ✓ |
| Categories | E-commerceAI / LLM ToolsOther | Web ScrapingAI / 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.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
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
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
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"]
}
}
}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"]
}
}
}