MCP Catalogs
Home

z-image-studio vs filesystem

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

z-image-studio
by iconben
filesystem
by modelcontextprotocol
Stars★ 115★ 85,748
30d uses
Score4977
Official
Categories
AI / LLM ToolsDeveloper ToolsMedia
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

z-image-studio · Summary

A comprehensive MCP server for Z-Image-Turbo text-to-image generation with CLI, Web UI, and multiple GPU optimizations.

filesystem · Summary

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

z-image-studio · Use cases

  • AI agents needing to generate images from text descriptions
  • Automated content creation workflows requiring visual assets
  • Local development environments with image generation capabilities

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

z-image-studio · Install

Installation

**Using uv (recommended):**

uv tool install git+https://github.com/iconben/z-image-studio.git

**Using pip:**

pip install z-image-studio

**Global CLI Installation:**

uv tool install z-image-studio
# Update:
uv tool upgrade z-image-studio

**MCP Server Configuration:** After installation, the MCP server can be accessed via:

  • stdio: zimg mcp or zimg-mcp
  • SSE: /mcp-sse
  • Streamable HTTP: /mcp

For Claude Desktop, add to config.json:

{
  "mcpServers": {
    "z-image-studio": {
      "command": "zimg",
      "args": ["mcp"]
    }
  }
}

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.