MCP server that exposes the ThumbAPI thumbnail generation endpoint as a Model Context Protocol tool. Point any MCP-compatible AI agent at it and ask for a YouTube thumbnail, Instagram post, X/Twitter card, LinkedIn share, or blog hero image from a title.
- Transport: stdio (local, no remote server)
- Runtime: Node.js 18+, installed via
npx - Tools exposed:
generate_thumbnail,login,logout
The first time you use the MCP, ask your client (Claude Desktop, Cursor,
Claude Code, Windsurf, Cline, Continue) to "log in to thumbapi" — that
triggers the login tool. It:
- Spins up a one-shot local callback server on a random loopback port.
- Opens your browser to
app.thumbapi.dev/mcp-login. - Waits for you to click Authorize on the page (log in first if needed).
- Writes your API key to
~/.thumbapi/config.json(mode0600, dir0700).
Every subsequent generate_thumbnail call reads from that file. No copy-paste.
To sign out locally, ask your client to "log out of thumbapi" — that runs
the logout tool, which deletes ~/.thumbapi/config.json. The key on the
ThumbAPI dashboard is untouched (rotate it in the dashboard if you also want
to invalidate the key server-side).
Below are configs for the 5 most common MCP clients. Each uses the same
command and args — only the config file location and JSON wrapper shape
change per client. No API key goes into the config; the login tool handles
that on first use.
Config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"thumbapi": {
"command": "npx",
"args": ["-y", "@thumbapi/mcp-server"]
}
}
}Restart Claude Desktop after saving.
Config file: ~/.cursor/mcp.json (or per-project .cursor/mcp.json)
{
"mcpServers": {
"thumbapi": {
"command": "npx",
"args": ["-y", "@thumbapi/mcp-server"]
}
}
}Reload Cursor's MCP servers from Settings → MCP.
Config file: ~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"thumbapi": {
"command": "npx",
"args": ["-y", "@thumbapi/mcp-server"]
}
}
}Open Windsurf → Settings → Cascade → MCP Servers → Refresh.
Config file:
- macOS:
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json - Windows:
%APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json - Linux:
~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
{
"mcpServers": {
"thumbapi": {
"command": "npx",
"args": ["-y", "@thumbapi/mcp-server"]
}
}
}Open the Cline sidebar → MCP Servers → Restart.
Config file: ~/.continue/config.json
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@thumbapi/mcp-server"]
}
}
]
}
}Reload Continue from the VS Code / JetBrains extension.
Generates a thumbnail from a title.
| Param | Type | Required | Notes |
|---|---|---|---|
title |
string (1–200 chars) | yes | The headline / video title. |
format |
youtube | instagram | x | blogpost | linkedin |
yes | Target platform / aspect ratio. |
model |
sd | hd |
no | Default sd (10 credits). hd needs Pro/Business (20 credits). |
outputFormat |
webp | png |
no | Default webp. |
category |
one of the values below | no | Content category hint that biases visual style. Omit to auto-detect from the title. |
category accepted values — the schema constrains this to the list below;
the LLM should pick the closest match, or leave category unset:
auto, tech-saas, business-finance, education-tutorial,
fitness-wellness, medical-healthcare, lifestyle-vlog, food-cooking,
travel, gaming, entertainment-comedy, news-commentary,
creative-design.
Returns an MCP image content block plus a text summary that includes:
generationId— stable ID for the generation (useful for logs and audits).imageUrl— public URL on ThumbAPI's CDN. Use this to download or embed the image without decoding base64. The URL is served from Cloudflare R2 and is returned on every successful generation (v1.1.0+).
Signs the MCP server in to ThumbAPI. Starts a local
callback server on a random loopback port, opens your browser to
https://app.thumbapi.dev/mcp-login?callback=…&state=…, and waits for you to
click Authorize on the page. The returned API key is written to
~/.thumbapi/config.json (mode 0600, directory 0700).
- Takes no arguments.
- Blocks up to ~30 seconds per invocation waiting for the browser callback.
If you haven't consented yet, the tool returns "Waiting for browser
approval…" — just call
loginagain to keep polling. The underlying local server stays alive across calls for up to 15 minutes. - Idempotent: calling
loginagain while a flow is in progress reuses the same URL / port. - Only accepts callback traffic bound to
127.0.0.1and requires the CSRFstateparam to match — no other machine on your LAN can hit the callback.
Deletes ~/.thumbapi/config.json. Takes no arguments. Does not revoke the
key server-side — rotate it in the dashboard if
you want to invalidate the key everywhere.
MIT