klavis vs everything
Side-by-side comparison to help you pick between these two MCP servers.
klavis by Klavis-AI | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 5,735 | ★ 85,748 |
| 30d uses | — | — |
| Score | 58 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsCommunicationProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
klavis · Summary
Klavis is an MCP integration platform offering over 100 prebuilt connectors with OAuth support for AI agents.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
klavis · Use cases
- Building AI agents that need to access multiple services with proper authentication
- Scaling MCP integrations for enterprise-level AI applications
- Creating custom tool integrations for specialized AI workflows
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
klavis · Install
Installation Options
Cloud-hosted
Visit [klavis.ai](https://www.klavis.ai) and follow the quickstart guide.
Self-hosted
# Run any MCP Integration
docker pull ghcr.io/klavis-ai/github-mcp-server:latest
docker run -p 5000:5000 ghcr.io/klavis-ai/github-mcp-server:latest
# Install Open Source Strata locally
pipx install strata-mcp
strata add --type stdio playwright npx @playwright/mcp@latestSDK (Python)
from klavis import Klavis
from klavis.types import McpServerName
klavis = Klavis(api_key="your-key")
# Create Strata instance
strata = klavis.mcp_server.create_strata_server(
user_id="user123",
servers=[McpServerName.GMAIL, McpServerName.SLACK],
)Claude Desktop Integration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"klavis": {
"command": "docker",
"args": ["run", "--rm", "-p", "5000:5000", "ghcr.io/klavis-ai/github-mcp-server:latest"]
}
}
}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