drio
Open app

JigsawStack Image Generation

Source

Generate images from text using advanced AI models. Learn more about jigsawstack's image generation API here: https://jigsawstack.com/docs/api-reference/ai/image-generation You can get your jigsawstack API key here: https://jigsawstack.com/dashboard/

Catalog onlyCatalog onlySTDIO

Overview

JigsawStack Image Generation is a platform that allows users to generate images from text using advanced AI models. It provides an API for seamless integration into applications.

To use the JigsawStack Image Generation API, you need to obtain an API key from the JigsawStack website. After setting up the environment, you can send text prompts to the API to receive generated images in base64 format.

  • Generate images from textual descriptions. - Easy integration with applications via API. - Supports various image generation models.
  1. Creating custom illustrations for articles or blogs.
  2. Generating unique artwork based on user prompts.
  3. Enhancing creative projects with AI-generated visuals.

Add to your AI client

Use these steps to connect JigsawStack Image Generation 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": {
    "jigsawstack-image-generation-main": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-jigsawstack-image-generation-main"
      ]
    }
  }
}

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": {
    "jigsawstack-image-generation-main": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-jigsawstack-image-generation-main"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "jigsawstack-image-generation-main": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-jigsawstack-image-generation-main"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "jigsawstack-image-generation-main": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-jigsawstack-image-generation-main"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "jigsawstack-image-generation-main": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-jigsawstack-image-generation-main"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "jigsawstack-image-generation-main": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-jigsawstack-image-generation-main"
      ]
    }
  }
}

FAQ

How do I get an API key?

You can obtain your API key by signing up for a free account at JigsawStack's dashboard.

What formats does the API support for image output?

The API returns images in base64 format, which can be easily converted to various image formats.

Is there a limit to the number of images I can generate?

Yes, there may be usage limits based on your subscription plan.