MCP Catalogs
Home

mcp-klever-vm vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

mcp-klever-vm
by klever-io
filesystem
by modelcontextprotocol
Stars★ 31★ 85,748
30d uses
Score4477
Official
Categories
Developer ToolsblockchainAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

mcp-klever-vm · Summary

MCP server for Klever blockchain smart contract development with pattern extraction and validation tools.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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"]
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.