🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

mcp-xmorf

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mcp-xmorf

MCP server for xmorf — AI image editing and generation API

latest
Source
npmnpm
Version
1.0.2
Version published
Weekly downloads
36
-36.84%
Maintainers
1
Weekly downloads
 
Created
Source

mcp-xmorf

MCP server for xmorf — AI image editing and generation API.

Tools

ToolDescription
xmorf_edit_imageEdit images with natural language prompts (8 AI models)
xmorf_generate_imageGenerate images from text descriptions
xmorf_list_modelsList available editing models

Edit Models

ModelDescription
standardGeneral-purpose AI image editing
enhanceEnhance realism / anything-to-real
upscaleUpscale and improve resolution
shadowLight & shadow migration (needs reference image)
kissPassionate kiss effect (needs reference image)
skinSkin editing and retouching
anglesMulti-angle view generation
sceneScene change / next-scene generation

Setup

Get an API token from xmorf.com.

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "xmorf": {
      "command": "npx",
      "args": ["-y", "mcp-xmorf"],
      "env": {
        "XMORF_API_TOKEN": "xmorf_your_token_here"
      }
    }
  }
}

VS Code

Add to .vscode/mcp.json:

{
  "servers": {
    "xmorf": {
      "command": "npx",
      "args": ["-y", "mcp-xmorf"],
      "env": {
        "XMORF_API_TOKEN": "xmorf_your_token_here"
      }
    }
  }
}

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "xmorf": {
      "command": "npx",
      "args": ["-y", "mcp-xmorf"],
      "env": {
        "XMORF_API_TOKEN": "xmorf_your_token_here"
      }
    }
  }
}

Usage Examples

Edit an image

Edit this photo to remove the background

The xmorf_edit_image tool accepts file paths, data URLs, or raw base64 as input. You can optionally specify an output path to save the result to disk.

Generate an image

Generate a watercolor painting of a mountain landscape at dawn

List models

What image editing models are available on xmorf?

Environment Variables

VariableRequiredDescription
XMORF_API_TOKENYesYour xmorf API bearer token

API Reference

See the full API docs at xmorf.com/docs.

License

MIT

Keywords

mcp

FAQs

Package last updated on 19 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts