CarouselMCP
FreeNot checkedGenerates ready-to-post Instagram carousel PNGs from a topic string, using AI (Gemini or Claude) for content and storing images in S3.
About
Generates ready-to-post Instagram carousel PNGs from a topic string, using AI (Gemini or Claude) for content and storing images in S3.
README
An MCP server that generates a ready-to-post Instagram carousel — a "notebook paper" style set of PNG slides — from nothing but a topic string. Deployed as a single AWS Lambda function behind a public Function URL, with generated images stored in S3.
What it does
One tool, generate_skill_carousel, takes a topic and returns a finished carousel:
{
"name": "generate_skill_carousel",
"arguments": { "topic": "python libraries every data engineer should know" }
}
A single AI call — Gemini or Claude, whichever key is available — does all the creative work at once:
- Picks the layout itself. Most topics get the default list layout: a hook slide, four grid pages of items, and a closing slide (6 slides, up to 32 items total). A genuine two-sided topic ("Claude pros and cons", "remote work advantages and disadvantages") is automatically routed to the pros_cons layout instead — hook, a green PROS slide, a red CONS slide, a verdict slide, a recap slide, and closing. This is a semantic decision by the model, not keyword matching on the topic string.
- Decides how many items the topic actually supports — it won't pad a thin topic out to a fixed count.
- Grounds the content in a real web search (Google Search via Gemini, or Claude's built-in
web_searchtool) instead of writing from the model's own unverified memory.
Every icon is a built-in flat vector glyph — there's no AI image generation anywhere in the
pipeline, and none is needed. No background image, hero photo, reference image, or custom
theme/colors are accepted as input; the paper-texture background, fonts, and doodle accents are
all fixed. That's a deliberate trim, not a missing feature — topic (plus an optional API key
override) is the entire input surface.
Requirements
- One of
GEMINI_API_KEYorANTHROPIC_API_KEY(env var, or passgeminiApiKey/claudeApiKeyper call to override). Gemini is tried first if both are present. If neither is available or both fail, it falls back to placeholder text rather than failing the whole call.- Note: Claude has no image-generation API and isn't used for one here — it's only ever used for the text content, same as Gemini's role in this pipeline.
OUTPUT_BUCKET— an S3 bucket the function can write PNGs to (defaults tomy-custom-mcpin code; override for your own bucket).MCP_API_KEY— shared secret every caller must send. Fails closed: a missing or wrong key is rejected with401before any model call or S3 write happens, so a bad key never costs anything.- Bundled fonts. Lambda has no system fonts, and image rendering needs real font files —
fonts/NotoSans-Regular.ttf,fonts/NotoSans-Bold.ttf, andfonts/fonts.confare committed in this repo and must ship inside the deployment package, withFONTCONFIG_PATH=/var/task/fontsset as an environment variable.
Deploying
Option A — one command, via AWS SAM
sam build --use-container
sam deploy --guided
--use-container matters here — sharp (the image library this uses) ships a native binary
compiled for a specific OS/architecture. Building without a container compiles against whatever
machine you're running sam build on; building in a container cross-compiles against Lambda's
actual Linux runtime, avoiding a broken/mismatched native binary at runtime.
--guided prompts for the stack name, region, and the two parameters (GeminiApiKey /
AnthropicApiKey — provide at least one; both are NoEcho) on first run, then remembers your
answers in samconfig.toml.
Option B — manual, via the Lambda console
npm install.- Zip the folder's contents (not the folder itself) —
index.mjs,node_modules,package.json,package-lock.json, and thefonts/folder all need to sit at the zip's top level. - Create function → author from scratch → Node.js 22+ → upload the zip.
- Configuration → General configuration: raise Timeout (this one's deployed at ~2 minutes) and Memory (deployed at 256 MB — image compositing needs more headroom than plain text generation).
- Configuration → Environment variables:
MCP_API_KEY,OUTPUT_BUCKET,FONTCONFIG_PATH(/var/task/fonts), and at least one ofGEMINI_API_KEY/ANTHROPIC_API_KEY. - Permissions: attach
s3:GetObject,s3:PutObject,s3:PutObjectAcl, ands3:DeleteObjecton your output bucket — the function reads, writes, and can clean up its own generated objects. - Configuration → Function URL: create one with Auth type
NONE.MCP_API_KEY, checked inside the handler, is the real gate —NONEhere only means AWS isn't checking IAM signatures.
Testing it directly
curl -s https://<your-function-url> \
-H "x-api-key: <MCP_API_KEY>" \
-H "content-type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
curl -s https://<your-function-url> \
-H "x-api-key: <MCP_API_KEY>" \
-H "content-type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"generate_skill_carousel","arguments":{"topic":"python libraries every data engineer should know"}}}'
The response includes both a text summary and structuredContent with the topic, slide count,
and the direct S3 URLs for each generated PNG.
Connecting an MCP client
claude mcp add --transport http carousel https://<your-function-url> \
--header "x-api-key: <MCP_API_KEY>"
Project structure
index.mjs — everything: carousel generation, image rendering, S3 I/O, JSON-RPC dispatch
fonts/ — fonts bundled into the deployment package (no system fonts on Lambda)
package.json
Security note
MCP_API_KEY, GEMINI_API_KEY, and ANTHROPIC_API_KEY are all plain environment variables —
never hardcode them in index.mjs. Rotate all three if this function's configuration was ever
shown on screen (a demo, a screen recording).
Installing CarouselMCP
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/theaidrill/CarouselMCPFAQ
Is CarouselMCP MCP free?
Yes, CarouselMCP MCP is free — one-click install via Unyly at no cost.
Does CarouselMCP need an API key?
No, CarouselMCP runs without API keys or environment variables.
Is CarouselMCP hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install CarouselMCP in Claude Desktop, Claude Code or Cursor?
Open CarouselMCP on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
by lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
mkinf
An Open Source registry of hosted MCP Servers to accelerate AI agent workflows.
Compare CarouselMCP with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
