generateMeme
Create meme images using Imgflip templates by inputting a numeric ID and custom text. Simplify meme generation for AI models with structured inputs via the MCP server.
Instructions
Generate a meme image from Imgflip using the numeric template id and text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
templateNumericId | Yes | ||
text0 | Yes | ||
text1 | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"templateNumericId": {
"type": "string"
},
"text0": {
"type": "string"
},
"text1": {
"type": "string"
}
},
"required": [
"templateNumericId",
"text0"
],
"type": "object"
}