CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Xmorf

crawde/mcp-xmorf
authSTDIOregistry active
Summary

Connects Claude to the xmorf API for AI image editing and generation. Exposes three tools: edit images using natural language prompts across eight specialized models (standard editing, enhance for realism, upscale, shadow migration, skin retouching, multi-angle views, and scene generation), generate new images from text descriptions, and list available models. Handles multiple input formats including file paths, data URLs, and raw base64. Requires an API token from xmorf.com. Reach for this when you need to programmatically manipulate images through conversation, whether removing backgrounds, upscaling photos, or generating artwork from descriptions without leaving your AI workflow.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

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

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

XMORF_API_TOKEN*secret

Your xmorf API bearer token from xmorf.com

Registryactive
Packagemcp-xmorf
TransportSTDIO
AuthRequired
UpdatedApr 19, 2026
View on GitHub