MCP server intelligence profile

openai-gpt-image-mcp Server

An MCP server that enables image generation and editing using OpenAI's DALL-E models with support for text prompts, inpainting, and outpainting. It includes advanced features like automatic aspect ratio mapping and intelligent file management to handle large image payloads

Local Only199-mcp
Awaiting current scanNpm · 1.2.0

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
2Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install openai-gpt-image-mcp-199bio from npm

Version 1.2.0 declares 1 executable entrypoint.

npm install --save-exact openai-gpt-image-mcp-199bio@1.2.0
npx -y -p openai-gpt-image-mcp-199bio@1.2.0 openai-gpt-image-mcp-199bio
MCP client configuration example
{
  "mcpServers": {
    "openai-gpt-image-mcp-199bio": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "openai-gpt-image-mcp-199bio@1.2.0",
        "openai-gpt-image-mcp-199bio"
      ]
    }
  }
}

Identity

Canonical slugopenai-gpt-image-mcp-53c73670DeploymentLocal Only
Canonical packagenpm:openai-gpt-image-mcp-199bioRepository199-mcp/mcp-openai-image
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmopenai-gpt-image-mcp-199bio1.2.01Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmopenai-gpt-image-mcp-199bio1.2.0CurrentSep 5, 20262 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
openai-gpt-image-mcpServer-reported name
1Capability groups
Aug 22, 2026Observed

Tools 2

ToolCategoryAnnotationsRisk
create-image
Input schema
{
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "maxLength": 32000
    },
    "background": {
      "type": "string",
      "enum": [
        "transparent",
        "opaque",
        "auto"
      ]
    },
    "model": {
      "type": "string",
      "const": "gpt-image-1",
      "default": "gpt-image-1"
    },
    "moderation": {
      "type": "string",
      "enum": [
        "auto",
        "low"
      ]
    },
    "n": {
      "type": "integer",
      "minimum": 1,
      "maximum": 10
    },
    "output_compression": {
      "type": "integer",
      "minimum": 0,
      "maximum": 100
    },
    "output_format": {
      "type": "string",
      "enum": [
        "png",
        "jpeg",
        "webp"
      ]
    },
    "quality": {
      "type": "string",
      "enum": [
        "auto",
        "high",
        "medium",
        "low"
      ]
    },
    "size": {
      "type": "string",
      "enum": [
        "1024x1024",
        "1536x1024",
        "1024x1536",
        "auto"
      ],
      "description": "Size of the generated images. Supports exact dimensions (1024x1024, 1536x1024, 1024x1536) or common aspect ratios (1:1, 16:9, 9:16, square, landscape, portrait, 3:2, 2:3, 4:3, 3:4) or 'auto'."
    },
    "user": {
      "type": "string"
    },
    "output": {
      "type": "string",
      "enum": [
        "base64",
        "file_output"
      ],
      "default": "base64"
    },
    "file_output": {
      "type": "string",
      "description": "Absolute path to save the image file, including the desired file extension (e.g., /path/to/image.png). If multiple images are generated (n > 1), an index will be appended (e.g., /path/to/image_1.png)."
    },
    "filename": {
      "type": "string",
      "description": "Optional descriptive filename (without extension) for saving the image. Example: 'cat-playing-football'. The AI should provide a descriptive name based on the prompt. If not provided, a timestamp will be used."
    }
  },
  "required": [
    "prompt"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
edit-image
Input schema
{
  "type": "object",
  "properties": {
    "image": {
      "type": "string",
      "description": "Absolute image path or base64 string to edit."
    },
    "prompt": {
      "type": "string",
      "maxLength": 32000,
      "description": "A text description of the desired edit. Max 32000 chars."
    },
    "mask": {
      "type": "string",
      "description": "Optional absolute path or base64 string for a mask image (png < 4MB, same dimensions as the first image). Fully transparent areas indicate where to edit."
    },
    "model": {
      "type": "string",
      "const": "gpt-image-1",
      "default": "gpt-image-1"
    },
    "n": {
      "type": "integer",
      "minimum": 1,
      "maximum": 10,
      "description": "Number of images to generate (1-10)."
    },
    "quality": {
      "type": "string",
      "enum": [
        "auto",
        "high",
        "medium",
        "low"
      ],
      "description": "Quality (high, medium, low) - only for gpt-image-1."
    },
    "size": {
      "type": "string",
      "enum": [
        "1024x1024",
        "1536x1024",
        "1024x1536",
        "auto"
      ],
      "description": "Size of the generated images. Supports exact dimensions (1024x1024, 1536x1024, 1024x1536) or common aspect ratios (1:1, 16:9, 9:16, square, landscape, portrait, 3:2, 2:3, 4:3, 3:4) or 'auto'."
    },
    "user": {
      "type": "string",
      "description": "Optional user identifier for OpenAI monitoring."
    },
    "output": {
      "type": "string",
      "enum": [
        "base64",
        "file_output"
      ],
      "default": "base64",
      "description": "Output format: base64 or file path."
    },
    "file_output": {
      "type": "string",
      "description": "Absolute path to save the output image file, including the desired file extension (e.g., /path/to/image.png). If n > 1, an index is appended."
    },
    "filename": {
      "type": "string",
      "description": "Optional descriptive filename (without extension) for saving the edited image. Example: 'cat-with-hat'. The AI should provide a descriptive name based on the edit. If not provided, a timestamp will be used."
    }
  },
  "required": [
    "image",
    "prompt"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

openai-gpt-image-mcp Server questions

How do I install openai-gpt-image-mcp Server?

Install the selected package version with: npm install --save-exact openai-gpt-image-mcp-199bio@1.2.0

What tools does openai-gpt-image-mcp Server provide?

openai-gpt-image-mcp Server exposed 2 tools during independent protocol observation, including create-image, edit-image.

Is openai-gpt-image-mcp Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

OpenAI intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.