npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

memeboat-mcp

v0.3.0

Published

MCP server for Memeboat (memebo.at) — search 25,000+ meme templates and create memes from any AI assistant. Free, anonymous, no API key.

Readme

Memeboat MCP

smithery badge memeboat-mcp MCP server

MCP server for Memeboat — search 25,000+ meme templates and create real, shareable memes straight from your AI assistant. Free, anonymous, no API key.

Demo: Claude creates a meme via memeboat-mcp

Ask your assistant things like:

"Make a Buzz Lightyear everywhere meme about code reviews"

…and it will search the catalog, caption the template, and hand you back a live meme URL:

https://memebo.at/meme/x-x-everywhere-code-reviews-code-reviews-everywhere-ab12cd

Install

No install — connect by URL (recommended)

Memeboat is also hosted as a remote MCP server at https://memebo.at/mcp (streamable HTTP, no auth):

claude mcp add --transport http memeboat https://memebo.at/mcp

In Claude (web/desktop): Settings → Connectors → Add custom connector → https://memebo.at/mcp.

npm package (stdio)

Requires Node.js 18+.

Claude Code

claude mcp add memeboat -- npx -y memeboat-mcp

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "memeboat": {
      "command": "npx",
      "args": ["-y", "memeboat-mcp"]
    }
  }
}

Cursor / other MCP clients

Any client that speaks stdio MCP works the same way: run npx -y memeboat-mcp.

Tools

| Tool | What it does | |---|---| | search_meme_templates | Search templates by name or topic (query, optional limit). Returns slugs, image URLs and a suggestedCaptionCount per template. | | get_meme_template | Details for one template by slug: dimensions, image URL, caption count. | | create_meme | Caption a template (template slug + texts[], top-to-bottom) and get back the meme's page URL and direct image URL. Supports per-caption styling and layout (see below). |

Caption placement: 1 text = bottom caption, 2 texts = classic top/bottom, more texts fill the template's own caption boxes in order — matching suggestedCaptionCount gives the best results.

Styling (create_meme): each entry in texts[] can be a plain string or an object { text, color?, outline?, font? }. Colors are a hex value (#f00/#ff0000) or one of white, black, red, yellow, blue, green; leave outline off and a readable outline is picked for you. A top-level font sets the default for every caption, and layout: "top" puts the captions in a white bar above the image instead of overlaying them. Fonts: impact, arial, helvetica, times, courier, titillium, thick, kalam, comic, notosans, notosanshebrew.

"Make a drake meme, red top caption, in the top layout"

How it works

This package is a thin stdio client over Memeboat's public JSON API (https://memebo.at/api/...). Created memes are rendered server-side by Memeboat and hosted there — the image URL is immediately shareable. Creation is rate-limited per IP; be a good citizen.

Point the server at another instance with MEMEBOAT_API_URL (useful for development).

Where to find it

About Memeboat

Memeboat is a free, anonymous meme generator — no sign-up, no login walls. Browse the full catalog at memebo.at/templates.

License

MIT