MCP Catalogs
Home

voicemode vs filesystem

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

voicemode
by mbailey
filesystem
by modelcontextprotocol
Stars★ 1,181★ 85,748
30d uses
Score5577
Official
Categories
CommunicationProductivityAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

voicemode · Summary

VoiceMode enables natural voice conversations with Claude Code and other MCP agents through local or cloud speech services.

filesystem · Summary

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

voicemode · Use cases

  • Hands-free coding while walking or cooking
  • Giving eyes a break during extended screen time
  • Voice interactions when hands are occupied with other tasks

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

voicemode · Install

Installation

**Option 1: Claude Code Plugin (Recommended)**

# Add the VoiceMode marketplace
claude plugin marketplace add mbailey/voicemode

# Install VoiceMode plugin
claude plugin install voicemode@voicemode

# Install dependencies (CLI, Local Voice Services)
/voicemode:install

# Start talking!
/voicemode:converse

**Option 2: Python installer package**

# Install UV package manager (if needed)
curl -LsSf https://astral.sh/uv/install.sh | sh

# Run the installer (sets up dependencies and local voice services)
uvx voice-mode-install

# Add to Claude Code
claude mcp add --scope user voicemode -- uvx --refresh voice-mode

Add to Claude Desktop config (~/.claude/settings.json):

{
  "mcpServers": {
    "voicemode": {
      "command": "uvx",
      "args": ["--refresh", "voice-mode"]
    }
  }
}

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.