MCP Catalogs
Home

Vibe-Coder-MCP vs filesystem

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

Vibe-Coder-MCP
by freshtechbro
filesystem
by modelcontextprotocol
Stars★ 99★ 85,748
30d uses
Score4477
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit9 mo agothis month

Vibe-Coder-MCP · Summary

Vibe-Coder-MCP is a TypeScript-based MCP server that extends AI assistants with specialized software development tools.

filesystem · Summary

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

Vibe-Coder-MCP · Use cases

  • Enhancing AI coding assistants with specialized software development tools
  • Automating codebase analysis and documentation generation
  • Creating product requirements documents and user stories from prompts

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

Vibe-Coder-MCP · Install

Installation

**Global Installation (Recommended)**

npm install -g vibe-coder-mcp@latest

**Quick Run with npx**

npx vibe-coder-mcp@latest

**MCP Client Integration (Claude Desktop)** Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "vibe-coder-mcp": {
      "command": "npx",
      "args": ["vibe-coder-mcp"],
      "env": {
        "OPENROUTER_API_KEY": "your-openrouter-api-key",
        "VIBE_PROJECT_ROOT": "/path/to/your/project"
      }
    }
  }
}

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.