MCP Catalogs
Home

metorial-platform vs filesystem

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

metorial-platform
by metorial
filesystem
by modelcontextprotocol
Stars★ 207★ 85,748
30d uses
Score4977
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

metorial-platform · Summary

Metorial is an enterprise-grade MCP platform that connects AI models to thousands of APIs and tools with one-liner SDKs.

filesystem · Summary

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

metorial-platform · Use cases

  • Building enterprise-grade AI applications that need to connect to multiple data sources and APIs
  • Developers who want to simplify MCP integration in their AI projects without dealing with server configurations
  • Teams requiring monitoring and debugging capabilities for their AI integrations across thousands of MCP servers

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

metorial-platform · Install

Installation

SDK Installation

Install the SDK for your preferred language:

# For JavaScript/TypeScript
npm install @metorial/node

# For Python
pip install metorial

Self-Hosting

  1. Clone the repository:

``bash git clone https://github.com/metorial/metorial-platform.git cd metorial-platform ``

  1. Set up environment variables in .env file
  1. Run with Docker:

``bash docker-compose up -d ``

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.