# io.github.mariokernich/imgflip-mcp (npm · imgflip-mcp)

Browse Imgflip meme templates and generate memes (caption images, AI memes) via the Imgflip API

- Trust score: 79/100 (medium)
- Change this week: +28
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `imgflip-mcp`: 79/100 (this document), [markdown](https://verifymcp.io/servers/mariokernich-imgflip-mcp/imgflip-mcp.md), [page](https://verifymcp.io/servers/mariokernich-imgflip-mcp/imgflip-mcp)

## Channel facts

- Registry: `npm`
- Package: `imgflip-mcp`
- Version: `1.0.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to mariokernich/imgflip-mcp).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 21 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 78/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 495 tokens (~247/item across 2 items; 2 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add mariokernich-imgflip-mcp -- npx -y imgflip-mcp
```

### Codex

```bash
codex mcp add mariokernich-imgflip-mcp -- npx -y imgflip-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "mariokernich-imgflip-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "imgflip-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add mariokernich-imgflip-mcp --command npx --arg -y --arg imgflip-mcp
```

### Hermes

```yaml
mcp_servers:
  mariokernich-imgflip-mcp:
    command: "npx"
    args: ["-y", "imgflip-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "mariokernich-imgflip-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "imgflip-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 79, +74)

- [security improvement] Install scripts: unverified → pass
- [security improvement] Provenance: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] The attested source repository moved: mariokernich/imgflip-mcp
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → 100
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Tool coverage: unverified → 100
- [functional] Licence: MIT

### 2026-08-01 (score 5, −20)

- [functional regression] Schema quality: 100 → unverified
- [functional regression] Tool coverage: 100 → unverified

### 2026-07-31 (score 25, −26)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 51)

First indexed and scored.

## MCP tools (2)

### `get_memes` (~115 tokens)

List popular meme templates

Get the ~100 most popular Imgflip meme templates (ordered by how often they were captioned in the last 30 days). Each template includes its id (needed for caption_image), name, image URL, dimensions and box_count (how many text boxes it supports). Free, no credentials required.

Input parameters:

- `limit` (integer): Maximum number of templates to return (default: all, up to 100)
- `name_filter` (string): Case-insensitive substring to filter template names by, e.g. "drake"

### `caption_image` (~266 tokens)

Create a meme from a template

Create a real meme by captioning an Imgflip template — use this whenever the user asks for a meme instead of drawing one yourself. Returns the generated image inline plus its URL. Use get_memes first to find a template_id and its box_count. For simple two-line memes pass text0 (top) and text1 (bottom); for templates with more than two boxes, or for custom styling/positioning, pass the boxes array instead (boxes takes precedence over text0/text1). Requires a free Imgflip account (IMGFLIP_USERNAME / IMGFLIP_PASSWORD).

Input parameters:

- `boxes` (array): Up to 20 text boxes for templates with more than two boxes or for custom positioning/colors. Omitted coordinates are auto-placed.
- `font` (string): Font family (default: impact)
- `max_font_size` (integer): Maximum font size in pixels (default: 50)
- `no_watermark` (boolean): Remove the imgflip.com watermark (Imgflip Premium only)
- `template_id` (string, required): Template id from get_memes, e.g. "181913649" for Drake
- `text0` (string): Top text (ignored when boxes is set)
- `text1` (string): Bottom text (ignored when boxes is set)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/mariokernich-imgflip-mcp/imgflip-mcp#diagnostics

## Score history

- 2026-08-03: 79
- 2026-08-02: 79
- 2026-08-01: 5
- 2026-07-31: 25
- 2026-07-30: 51
- 2026-07-28: 51
- 2026-07-27: 51

## Links

- npm package: https://www.npmjs.com/package/imgflip-mcp
- Socket report: https://socket.dev/npm/package/imgflip-mcp
- Repository: https://github.com/mariokernich/imgflip-mcp
- Changelog RSS feed: https://verifymcp.io/servers/mariokernich-imgflip-mcp/imgflip-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/mariokernich-imgflip-mcp/imgflip-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/mariokernich-imgflip-mcp/imgflip-mcp
