# Does Memeboat have an MCP server?

**Yes — Official.** Memeboat maintains an official MCP server.

## Facts

- Verdict: Official (Yes)
- Access: Local server — Runs on your machine over stdio, launched by your MCP client.
- Repository: [memebo-at/memeboat-mcp](https://github.com/memebo-at/memeboat-mcp) — ★ 0, last push 2026-07-06, MIT
- Maintainer: Memeboat
- Language: JavaScript
- Category: [Art & Culture](https://mcpyet.com/category/art-culture/)
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## What it does

> MCP server for Memeboat — search 25,000+ meme templates and create memes from any AI assistant. Free, no API key. https://memebo.at
> — how [memebo-at/memeboat-mcp](https://github.com/memebo-at/memeboat-mcp) describes itself

## The receipts

- **Official repository:** [memebo-at/memeboat-mcp](https://github.com/memebo-at/memeboat-mcp) — ★ 0, pushed 2026-07-06, MIT (maintained)

## How to connect it

Runs on your machine over stdio, launched by your MCP client.

### Claude Code

```sh
claude mcp add memeboat -- npx -y <package-from-readme>
```

Swap in the exact package and flags from the repo README — most servers need an API key passed as an environment variable. Add `--scope user` to make it available in every project.

### Claude Desktop

Open **Settings → Developer → Edit Config** and add the server to `claude_desktop_config.json`, then restart Claude Desktop:

```json
{
  "mcpServers": {
    "memeboat": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "memeboat": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "memeboat": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ]
    }
  }
}
```

### ChatGPT

ChatGPT connects to **remote servers only**, and this one runs on your machine. Either expose it through an MCP gateway that gives it a public URL, or use a client with native local support (Claude or Cursor).

## How we know

Verdict derived by matching the Memeboat organization against its GitHub presence and cross-checking against published MCP server lists.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Corrections: hello@mcpyet.com.

## Also in Art & Culture

- [fal.ai](https://mcpyet.com/mcp/fal-ai.md) — Official (Yes)
- [Kling](https://mcpyet.com/mcp/kling.md) — Community only (Sort of)
- [Kie.ai](https://mcpyet.com/mcp/kie-ai.md) — Community only (Sort of)
- [Blender](https://mcpyet.com/mcp/blender.md) — Community only (Sort of)
- [Canva](https://mcpyet.com/mcp/canva.md) — Official (Yes)
- [Spotify](https://mcpyet.com/mcp/spotify.md) — Community only (Sort of)

---

Source: https://mcpyet.com/mcp/memebo-at/ — data refreshed 2026-08-11
