Memelord.com
Memelord Dev Portal/MCP & Skills

MCP & Skills

Connect the Memelord API to your AI coding tools via MCP (Model Context Protocol). Generate and edit memes directly from Claude Code, Cursor, Windsurf, and more.

MCP Server

The Memelord MCP server is hosted at https://www.memelord.com/api/mcp. No installation needed — just add the URL and your API key to your tool's MCP config.

1. Get your API key

If you don't already have one, visit Developer Settings to create an API key. You'll need a key that starts with mlord_live_.

2. Add to your tool

Claude Code

Add to your project's .mcp.json or global ~/.claude.json:

{
  "mcpServers": {
    "memelord": {
      "type": "http",
      "url": "https://www.memelord.com/api/mcp",
      "headers": {
        "Authorization": "Bearer mlord_live_YOUR_API_KEY"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project:

{
  "mcpServers": {
    "memelord": {
      "url": "https://www.memelord.com/api/mcp",
      "headers": {
        "Authorization": "Bearer mlord_live_YOUR_API_KEY"
      }
    }
  }
}

Windsurf / Other Tools

Any tool that supports remote MCP servers via Streamable HTTP can connect. Point it at https://www.memelord.com/api/mcp with your API key in the Authorization header.

3. Start making memes

Ask your AI assistant to generate memes using natural language:

"Generate a meme about developers fixing bugs at 3am"

"Make a video meme about shipping on Friday"

"Edit the last meme to be about JavaScript instead"

Available Tools

The MCP server exposes the following tools to your AI assistant:

ToolPurposeCredits
generate_memeGenerate image memes from a prompt1 / meme
edit_memeEdit text on an existing image meme1 / edit
generate_video_memeGenerate captioned video memes (async)5 / video
edit_video_memeRe-caption an existing video meme5 / edit
check_video_statusPoll render job status / get MP4 URLFree

See the API Docs for full parameter details on each endpoint.

OpenClaw Skill

Alternatively, the Memelord skill is available on OpenClaw for tools that support it. Install it and set your API key as an environment variable:

openclaw install iamjasonlevin/memelord
export MEMELORD_API_KEY="mlord_live_YOUR_API_KEY"

The OpenClaw skill works with Cursor, Claude Code, Windsurf, Codex, and any OpenClaw-compatible agent.

MCP & Skills | Memelord Dev Portal