PluginBench
MCP Server
Maintained

io.github.crawde/xmorf MCP Server

io.github.crawde/xmorf

What is the io.github.crawde/xmorf MCP server?

AI image editing and generation via xmorf API. Edit, generate, and list models.

How to install io.github.crawde/xmorf

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • XMORF_API_TOKEN
    required
    secret

    Your xmorf API bearer token from xmorf.com

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "xmorf": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-xmorf"
      ],
      "env": {
        "XMORF_API_TOKEN": "<YOUR_XMORF_API_TOKEN>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "xmorf": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-xmorf"
      ],
      "env": {
        "XMORF_API_TOKEN": "<YOUR_XMORF_API_TOKEN>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "xmorf": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-xmorf"
      ],
      "env": {
        "XMORF_API_TOKEN": "<YOUR_XMORF_API_TOKEN>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "xmorf": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-xmorf"
      ],
      "env": {
        "XMORF_API_TOKEN": "<YOUR_XMORF_API_TOKEN>"
      }
    }
  }
}
Claude Code
claude mcp add xmorf --env XMORF_API_TOKEN=<YOUR_XMORF_API_TOKEN> -- npx -y mcp-xmorf

Related MCP servers

MCP server for ChartForge — generate stunning charts and diagrams from natural language

0
JavaScript
View repository →