MCP Catalogs
Home

filesystem vs motoko-mcp-example

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

filesystem
by modelcontextprotocol
motoko-mcp-example
by prometheus-protocol
Stars★ 85,748★ 1
30d uses
Score7731
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsblockchainOther
LanguageTypeScriptMotoko
Last committhis month9 mo ago

filesystem · Summary

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

motoko-mcp-example · Summary

A Motoko template for creating Prometheus Protocol MCP servers with one-click deployment on ICP Ninja.

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

motoko-mcp-example · Use cases

  • Building custom MCP tools for the Internet Computer blockchain
  • Creating monetized AI services with OAuth authentication
  • Developing and testing MCP servers in a browser-based IDE

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.

motoko-mcp-example · Install

Quick Deployment (No Local Setup Required)

  1. Visit the ICP Ninja deployment link: https://icp.ninja/i?s=wOrZM
  2. Click the **Run** button for temporary deployment (45 minutes) or **Publish** for permanent deployment
  3. Copy the canister ID from the deployment output
  4. Test your server with the MCP Inspector using the URL format: https://[YOUR_CANISTER_ID].icp0.io/mcp

Local Development Setup

  1. Install prerequisites:

- DFX (Canister SDK) - Node.js (v18.0+) - MOPS (Motoko Package Manager)

  1. Clone the repository
  2. Deploy locally: dfx deploy or npm run deploy

Claude Desktop Integration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "motoko-mcp": {
      "command": "dfx",
      "args": ["start", "--host", "127.0.0.1", "--port", "8000"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.