mcp-connector vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-connector by foobara | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 35 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Ruby | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-connector · Summary
A Ruby gem that exposes Foobara commands as MCP tools for integration with AI assistants like Claude.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-connector · Use cases
- Integrating Ruby business logic with AI assistants
- Exposing database operations through MCP
- Creating custom tools for AI to use in data processing tasks
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
mcp-connector · Install
Installation:
gem install foobara-mcp-connectorClaude Desktop configuration:
{
"mcpServers": {
"mcp-test": {
"type": "stdio",
"command": "your-script-path",
"args": [],
"env": {}
}
}
}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