npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

copilot-image-gen-mcp

v1.0.0

Published

MCP server for AI image generation and editing with inline display in Copilot Chat. Supports Azure OpenAI and OpenAI.

Downloads

20

Readme

image-gen-mcp

MCP server for AI image generation and editing with inline display in VS Code Copilot Chat.

Features

  • generate_image Generate images from text prompts
  • edit_image Edit existing images with text instructions
  • show_image Display local images inline in the chat pane

Supports Azure OpenAI and OpenAI as providers. Auto-detects based on environment variables.

Quick Start

Add to .vscode/mcp.json:

Azure OpenAI

{
  "servers": {
    "image-gen": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "image-gen-mcp"],
      "env": {
        "AZURE_OPENAI_ENDPOINT": "https://your-resource.openai.azure.com",
        "AZURE_OPENAI_API_KEY": "your-api-key",
        "AZURE_OPENAI_DEPLOYMENT": "gpt-image-1"
      }
    }
  }
}

OpenAI

{
  "servers": {
    "image-gen": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "image-gen-mcp"],
      "env": {
        "OPENAI_API_KEY": "sk-..."
      }
    }
  }
}

Environment Variables

The server auto-detects the provider based on which variables are set:

| Variable | Provider | Required | Description | |----------|----------|----------|-------------| | AZURE_OPENAI_ENDPOINT | Azure | Yes (Azure) | Azure OpenAI endpoint URL | | AZURE_OPENAI_API_KEY | Azure | Yes (Azure) | Azure OpenAI API key | | AZURE_OPENAI_DEPLOYMENT | Azure | No | Deployment name (default: gpt-image-1) | | OPENAI_API_KEY | OpenAI | Yes (OpenAI) | OpenAI API key | | OPENAI_MODEL | OpenAI | No | Model name (default: gpt-image-1) |

Tools

generate_image

Generate an image from a text prompt.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | prompt | string | Yes | Image generation prompt | | size | enum | No | 1024x1024 (default), 1024x1536, 1536x1024 | | quality | enum | No | low, medium (default), high |

edit_image

Edit an existing image with text instructions.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | imagePath | string | Yes | Path to the source image | | prompt | string | Yes | Editing instructions | | size | enum | No | Output size (default: 1024x1024) | | quality | enum | No | Image quality (default: medium) |

show_image

Display a local image file inline in the chat pane.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | imagePath | string | Yes | Path to the image file |

How It Works

The tools return Markdown image syntax with file:/// URIs. When the AI includes this in its response, VS Code renders the image inline in the Copilot Chat pane.

Generated images are saved to .image-gen-mcp/ in the current working directory.

License

MIT