Image Generation MCP Server
图像生成 MCP 服务器
该 MCP 服务器使用 Replicate Flux 模型提供图像生成功能。
安装
选项 1:NPX 方法(无需本地设置)
您可以直接从 npm 使用该包,而无需在本地安装它:
# No installation needed - npx will handle it选项 2:本地安装
如果您更喜欢本地安装:
# Global installation
npm install -g @gongrzhe/image-gen-server
# Or local installation
npm install @gongrzhe/image-gen-serverRelated MCP server: FLUX MCP Server
设置
配置 Claude 桌面
编辑您的 Claude Desktop 配置文件:
在 MacOS 上:
~/Library/Application Support/Claude/claude_desktop_config.json在 Windows 上:
%APPDATA%/Claude/claude_desktop_config.json
选项 1:NPX 配置(推荐)
此方法直接从 npm 运行服务器,而不需要本地文件:
{
"mcpServers": {
"image-gen": {
"command": "npx",
"args": ["@gongrzhe/image-gen-server"],
"env": {
"REPLICATE_API_TOKEN": "your-replicate-api-token",
"MODEL": "alternative-model-name"
},
"disabled": false,
"autoApprove": []
}
}
}选项 2:本地安装配置
如果您在本地安装了该包:
{
"mcpServers": {
"image-gen": {
"command": "node",
"args": ["/path/to/image-gen-server/build/index.js"],
"env": {
"REPLICATE_API_TOKEN": "your-replicate-api-token",
"MODEL": "alternative-model-name"
},
"disabled": false,
"autoApprove": []
}
}
}获取您的复制 API 令牌
在https://replicate.com注册/登录
创建新的 API 令牌
复制令牌并替换 MCP 设置中的
your-replicate-api-token
环境变量
REPLICATE_API_TOKEN(必需):用于身份验证的复制 API 令牌MODEL(可选):用于图像生成的 Replicate 模型。默认为“black-forest-labs/flux-schnell”。
配置参数
disabled:控制服务器是否启用(false)或禁用(true)autoApprove:无需用户确认即可执行的工具名称数组。空数组表示所有工具调用均需用户确认。
可用工具
生成图像
根据文本提示,使用 Flux 模型生成图像。
参数
prompt(必需):要生成的图像的文本描述seed(可选):用于可重复生成的随机种子aspect_ratio(可选):图像纵横比(默认值:“1:1”)output_format(可选):输出格式 - “webp”、“jpg”或“png”(默认值:“webp”)num_outputs(可选):要生成的图像数量(1-4,默认值:1)
示例用法
const result = await use_mcp_tool({
server_name: "image-gen",
tool_name: "generate_image",
arguments: {
prompt: "A beautiful sunset over mountains",
aspect_ratio: "16:9",
output_format: "png",
num_outputs: 1
}
});该工具返回所生成图像的 URL 数组。
📜 许可证
该项目已获得 MIT 许可。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides image generation capabilities using the Flux Schnell model on Replicate, allowing users to create images from text prompts.2MIT
- AlicenseBqualityDmaintenanceExposes Replicate's FLUX image generation models to Claude, enabling text-to-image generation, image variations, inpainting, and edge-guided creation with 6 different FLUX models.21MIT
- AlicenseNot gradedqualityNot gradedmaintenanceEnables high-quality image generation with advanced text rendering and contextual understanding using FLUX.1 Kontext Max through the Replicate API. Supports text-to-image generation, image editing, multiple aspect ratios, and automatically downloads generated images locally.1
- FlicenseNot gradedqualityDmaintenanceImage generation for Claude using every model on fal.ai, inline in conversations. Supports FLUX Schnell, Ideogram, SDXL, and more with privacy option via Venice.ai.
Related MCP Connectors
Generate AI images and videos (Flux, Nano Banana, Kling, Veo, 48+ models), refunds on failure.
Generate images, video, and audio with Glif's media-generation agent
AI image, video & music generation. Flux, Veo 3.1, Suno V5. Free tier included.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/GongRzhe/Image-Generation-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server