everything vs pluggedin-app
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | pluggedin-app by VeriTeknik | |
|---|---|---|
| Stars | ★ 85,748 | ★ 94 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
pluggedin-app · Summary
A unified, self-hostable web interface for discovering, configuring, and managing MCP servers.
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
pluggedin-app · Use cases
- Centralizing AI conversations and knowledge from multiple AI models and platforms
- Managing and versioning AI-generated content with proper attribution
- Providing a unified interface for accessing and configuring MCP servers across different AI clients
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-everythingpluggedin-app · Install
Docker Installation (Recommended)
git clone https://github.com/VeriTeknik/pluggedin-app.git
cd pluggedin-app
cp .env.example .env
docker compose up --build -dVisit http://localhost:12005 after installation.
Claude Desktop Integration
Add the following to Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"pluggedin": {
"command": "docker",
"args": ["run", "--rm", "-i", "veriteknik/pluggedin:latest", "mcp"]
}
}
}