eclipse-chatgpt-plugin vs everything
Side-by-side comparison to help you pick between these two MCP servers.
eclipse-chatgpt-plugin by gradusnikov | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 148 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Java | TypeScript |
| Last commit | this month | this month |
eclipse-chatgpt-plugin · Summary
Eclipse IDE plugin exposing development environment as an MCP server for AI agents to code, build, and debug.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
eclipse-chatgpt-plugin · Use cases
- AI assistants collaborating with developers on Java code through Eclipse IDE
- Automated refactoring and code optimization using Eclipse's internal tools
- Continuous integration workflows that build and test code via MCP server
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
eclipse-chatgpt-plugin · Install
Installation
- Install AssistAI from Eclipse Marketplace or update site
- Enable the HTTP MCP Server:
- Open Window > Preferences > Assist AI > HTTP MCP Server - Check 'Enable HTTP MCP Server' - Set hostname and port (default: localhost:8124) - Generate and save authentication token
Connecting Claude Desktop
Add to Claude Desktop config:
{
"mcpServers": {
"eclipse-ide": {
"command": "npx",
"args": [
"-y", "mcp-remote", "http://localhost:8124/mcp/eclipse-ide",
"--allow-http",
"--header", "Authorization: Bearer YOUR_TOKEN"
]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything