
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.
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.
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_.
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.
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"
The MCP server exposes the following tools to your AI assistant:
| Tool | Purpose | Credits |
|---|---|---|
| generate_meme | Generate image memes from a prompt | 1 / meme |
| edit_meme | Edit text on an existing image meme | 1 / edit |
| generate_video_meme | Generate captioned video memes (async) | 5 / video |
| edit_video_meme | Re-caption an existing video meme | 5 / edit |
| check_video_status | Poll render job status / get MP4 URL | Free |
See the API Docs for full parameter details on each endpoint.
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.