MCP Catalogs
Home

fcpxml-mcp-server vs filesystem

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

fcpxml-mcp-server
by DareDev256
filesystem
by modelcontextprotocol
Stars★ 46★ 85,748
30d uses
Score4777
Official
Categories
MediaProductivityDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit1 mo agothis month

fcpxml-mcp-server · Summary

AI-powered MCP server for Final Cut Pro XML with 53 tools to analyze, edit, and generate timelines through natural language.

filesystem · Summary

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

fcpxml-mcp-server · Use cases

  • Batch inserting chapter markers from transcripts into video timelines
  • Automatically detecting and fixing flash frames and gaps in video edits
  • Generating rough cuts from tagged clips based on pacing requirements

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

fcpxml-mcp-server · Install

Installation

  1. Clone & Install:
git clone https://github.com/DareDev256/fcpxml-mcp-server.git
cd fcpxml-mcp-server
pip install -e .
  1. Configure Claude Desktop:

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "fcpxml": {
      "command": "python",
      "args": ["/path/to/fcpxml-mcp-server/server.py"],
      "env": { "FCP_PROJECTS_DIR": "/Users/you/Movies" }
    }
  }
}

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.