mcp-klever-vm vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-klever-vm by klever-io | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 31 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsblockchainAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-klever-vm · Summary
MCP server for Klever blockchain smart contract development with pattern extraction and validation tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-klever-vm · Use cases
- Smart contract developers needing references for Klever VM patterns and best practices
- Teams managing large collections of Klever smart contracts with validation tools
- Educational platforms teaching blockchain development using pre-loaded examples
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-klever-vm · Install
Installation
Quick Start
Install and run instantly via npx — no cloning required:
npx -y @klever/mcp-serverFrom Source
- Clone the repository:
git clone https://github.com/klever-io/mcp-klever-vm.git
cd mcp-klever-vm- Install dependencies:
pnpm install- Copy environment configuration:
cp .env.example .env- Build the project:
pnpm run buildClaude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"klever-vm": {
"command": "npx",
"args": ["-y", "@klever/mcp-server"]
}
}
}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