MCP Catalogs
Home

Vera vs filesystem

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

Vera
by lemon07r
filesystem
by modelcontextprotocol
Stars★ 82★ 85,748
30d uses
Score4677
Official
Categories
Developer ToolsSearchAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguageRustTypeScript
Last committhis monththis month

Vera · Summary

Local code search tool combining BM25, vector similarity, and cross-encoder reranking with MCP support.

filesystem · Summary

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

Vera · Use cases

  • AI-powered code search and navigation within large codebases
  • Integration with coding assistants to provide enhanced code intelligence
  • Local code analysis for reference finding, dead code detection, and project overview

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

Vera · Install

Installation

  1. Install Vera:
bunx @vera-ai/cli install   # or: npx -y @vera-ai/cli install / uvx vera-ai install
  1. Set up models:
vera setup                       # Interactive wizard
vera setup --api                 # API mode (recommended)
  1. Enable MCP:
vera mcp   # or: bunx @vera-ai/cli mcp / uvx vera-ai mcp

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "vera": {
      "command": "vera",
      "args": ["mcp"]
    }
  }
}

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.