Omg Flux MCP
This mcp uses the flux api of ohmygpt to generate images
Overview
Omg Flux MCP is a server that utilizes the Flux API of OhMyGPT to generate images based on user input.
To use Omg Flux MCP, clone the repository from GitHub, install the necessary dependencies, and configure the server with your API key before running it.
- Image generation using the Flux API of OhMyGPT - Easy setup and configuration for developers - Built with Node.js for efficient performance
- Generating images for web applications
- Creating visual content for social media
- Assisting developers in integrating image generation into their projects
Add to your AI client
Use these steps to connect Omg Flux MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"omgflux-mcp-server-xxpe3": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-omgflux-mcp-server-xxpe3"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"omgflux-mcp-server-xxpe3": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-omgflux-mcp-server-xxpe3"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"omgflux-mcp-server-xxpe3": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-omgflux-mcp-server-xxpe3"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"omgflux-mcp-server-xxpe3": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-omgflux-mcp-server-xxpe3"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"omgflux-mcp-server-xxpe3": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-omgflux-mcp-server-xxpe3"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"omgflux-mcp-server-xxpe3": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-omgflux-mcp-server-xxpe3"
]
}
}
}FAQ
What programming language is Omg Flux MCP built with?
Omg Flux MCP is built with JavaScript and runs on Node.js.
Is there a specific Node.js version required?
Yes, Node.js version 18.0.0 or higher is required.
How do I configure the server?
You need to provide your API key in the configuration file before running the server.