MCP Catalogs
Home

mcp.mbt vs filesystem

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

mcp.mbt
by colmugx
filesystem
by modelcontextprotocol
Stars★ 2★ 85,748
30d uses
Score3477
Official
Categories
Developer ToolsAI / LLM ToolsOther
File SystemDeveloper ToolsProductivity
LanguageMoonBitTypeScript
Last commit3 mo agothis month

mcp.mbt · Summary

Type-safe MCP server implementation in MoonBit with dual transport support (STDIO/HTTP).

filesystem · Summary

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

mcp.mbt · Use cases

  • Building custom AI tools for Claude Desktop with MoonBit's type safety
  • Creating MCP servers that need to serve both desktop and web clients
  • Developing production-ready MCP servers with structured error handling

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

mcp.mbt · Install

moon add colmugx/mcp

For Claude Desktop integration, add to claude_desktop_config.json:

{
  "mcpServers": {
    "my-server": {
      "command": "moon",
      "args": ["run", "path/to/your_server.mbt"]
    }
  }
}

To run the example server:

moon run @examples/cmd/main

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.