MCP Catalogs
Home

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
Score4477
Official
Categories
Developer ToolsblockchainAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis 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-server

From Source

  1. Clone the repository:
git clone https://github.com/klever-io/mcp-klever-vm.git
cd mcp-klever-vm
  1. Install dependencies:
pnpm install
  1. Copy environment configuration:
cp .env.example .env
  1. Build the project:
pnpm run build

Claude 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
Comparison generated from public README + GitHub signals. Last updated automatically.