Memeboat MCP
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MEMEBOAT_API_URL | No | URL of another Memeboat instance (useful for development). |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_meme_templatesA | Search memebo.at's catalog of 25,000+ meme templates by name or topic (e.g. "drake", "distracted boyfriend", "cat"). Returns matching templates with their slug (use it with create_meme), image URL and a suggested caption count. |
| get_meme_templateA | Fetch one meme template by its slug (from search_meme_templates or a memebo.at/templates/ URL): dimensions, image URL and suggested caption count. |
| create_memeA | Create a real, shareable meme on memebo.at by captioning a template. texts are placed top-to-bottom: 1 caption = bottom text, 2 captions = classic top/bottom, N captions fill the template's boxes in order (match suggestedCaptionCount when possible). Captions can be plain strings or objects with per-caption color/outline/font; optional global font and layout ("top" = captions in a white bar above the image). Returns the meme page URL and a direct image URL. Rate-limited per IP — space out repeated calls. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: searching templates, fetching template details, and creating memes. There is no overlap or ambiguity.
All tools follow a consistent verb_noun pattern (search_meme_templates, get_meme_template, create_meme), using underscores and a clear action-object structure.
With only 3 tools, it is slightly minimal but still covers the essential operations for meme creation. The scope is narrow and appropriate for the service.
The tool set covers the full workflow: discover templates via search, examine a template, and create a meme. There are no obvious missing operations for the stated purpose.