EVE-EST-MCP vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
EVE-EST-MCP by kongyo2 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 32 | 77 |
| Official | — | ✓ |
| Categories | OtherDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 10 mo ago | this month |
EVE-EST-MCP · Summary
EVE-EST-MCP is an MCP server that provides EVE Server Time and downtime calculations for EVE Online players.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
EVE-EST-MCP · Use cases
- EVE Online players who need to track server time for fleet operations and market activities
- Bot developers who need to schedule actions based on EVE Server Time
- Community managers who need to announce events in relation to server downtime
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
EVE-EST-MCP · Install
Installation
- Clone the repository:
git clone https://github.com/kongyo2/EVE-EST-MCP.git
cd EVE-EST-MCP- Install dependencies:
npm install- Start the server:
npm run startFor Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"eve-est": {
"command": "node",
"args": ["dist/index.js"],
"env": {}
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.