chrome-devtools-mcp vs EVE-University-Wiki-MCP-Server
Side-by-side comparison to help you pick between these two MCP servers.
chrome-devtools-mcp by ChromeDevTools | EVE-University-Wiki-MCP-Server by kongyo2 | |
|---|---|---|
| Stars | ★ 39,757 | ★ 1 |
| 30d uses | — | — |
| Score | 65 | 33 |
| Official | — | — |
| Categories | Browser AutomationDeveloper ToolsWeb Scraping | Web ScrapinggameKnowledge Graph |
| Language | TypeScript | TypeScript |
| Last commit | this month | 9 mo ago |
chrome-devtools-mcp · Summary
Chrome DevTools MCP server lets AI coding agents control and inspect live Chrome browsers through the MCP protocol.
EVE-University-Wiki-MCP-Server · Summary
MCP server providing access to EVE University Wiki with Wayback Machine fallback.
chrome-devtools-mcp · Use cases
- Automated web testing and validation by AI agents
- Performance analysis and optimization of web applications
- Debugging web applications through AI-powered inspection
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
chrome-devtools-mcp · Install
Installation
Add the following config to your MCP client:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest"]
}
}
}For basic browser tasks in headless mode:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest", "--slim", "--headless"]
}
}
}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": {}
}
}
}