MeiGen-AI-Design-MCP vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
MeiGen-AI-Design-MCP by jau123 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,108 | ★ 85,748 |
| 30d uses | — | — |
| Score | 55 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsMediaDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
MeiGen-AI-Design-MCP · Summary
MCP server for AI image & video generation with 9 models, 1,400+ prompts, and parallel sub-agent orchestration.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
MeiGen-AI-Design-MCP · Use cases
- Product photography generation from simple descriptions
- Creating logo designs and brand assets
- Animating still images into videos
- Batch processing multiple creative variations in parallel
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
MeiGen-AI-Design-MCP · Install
Claude Code Plugin (Recommended)
/plugin marketplace add jau123/MeiGen-AI-Design-MCP
/plugin install meigen@meigen-marketplaceOther MCP-Compatible Hosts
Add to your MCP config (e.g. .mcp.json, claude_desktop_config.json):
{
"mcpServers": {
"meigen": {
"command": "npx",
"args": ["-y", "meigen@1.3.1"],
"env": {
"MEIGEN_API_TOKEN": "meigen_sk_..."
}
}
}
}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.