Server data from the Official MCP Registry
MarkItUp AI image annotation and marketing-visual generator (variations, outpaint, bg-removal).
MarkItUp AI image annotation and marketing-visual generator (variations, outpaint, bg-removal).
Well-structured MCP server for MarkItUp image processing with proper authentication via API key. Code is clean with good input validation, proper error handling, and appropriate use of environment variables. The server's permissions (network_http, env_vars) align well with its purpose of calling external image processing APIs. No malicious patterns, credential leaks, or dangerous operations detected. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 2 high severity). Package verification found 1 issue.
7 files analyzed · 7 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: MARKITUP_API_KEY
Environment variable: MARKITUP_API_BASE
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-smythmyke-markitup-mcp-server": {
"env": {
"MARKITUP_API_KEY": "your-markitup-api-key-here",
"MARKITUP_API_BASE": "your-markitup-api-base-here"
},
"args": [
"-y",
"markitup-mcp-server"
],
"command": "npx"
}
}
}From the project's GitHub README.
MCP (Model Context Protocol) server for MarkItUp — AI-powered image annotation and marketing-visual generation. Lets Claude Code, Claude Desktop, Cursor, ChatGPT-with-MCP, and other MCP-compatible clients call MarkItUp directly.
Status: v0.1.0 — pre-release. Five tools available:
markitup_credit_balance,markitup_generate,markitup_regen,markitup_extend,markitup_remove_background.
npx doesn't require a local Node.js if your MCP client bundles one).Add to your MCP config (~/.claude/mcp.json or project-scoped .mcp.json):
{
"mcpServers": {
"markitup": {
"command": "npx",
"args": ["-y", "markitup-mcp-server"],
"env": {
"MARKITUP_API_KEY": "mk_live_..."
}
}
}
}
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"markitup": {
"command": "npx",
"args": ["-y", "markitup-mcp-server"],
"env": {
"MARKITUP_API_KEY": "mk_live_..."
}
}
}
}
Cursor uses the same JSON shape. Settings → MCP → Add Server:
{
"mcpServers": {
"markitup": {
"command": "npx",
"args": ["-y", "markitup-mcp-server"],
"env": { "MARKITUP_API_KEY": "mk_live_..." }
}
}
}
markitup_credit_balanceReturns the current credit balance and subscription status.
No arguments. Use it to verify your API key works and to check credits before calling generation tools.
markitup_generateGenerates 3 polished marketing-visual variations from a screenshot. Costs 1 credit.
| Argument | Type | Required | Description |
|---|---|---|---|
description | string | yes | What the image shows and what to highlight |
template_id | string | yes | One of glassmorphic, clean_minimal, bold_marketing, dark_professional, documentation (and more) |
image_url | string | one-of | Public HTTPS URL of the source image |
image_base64 | string | one-of | Base64-encoded image bytes (no data: prefix) |
image_mime_type | string | no | MIME type when supplying image_base64. Default: image/png |
aspect_ratio | string | no | One of 1:1, 3:2, 2:3, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9, 21:9 |
image_size | string | no | 1K, 2K, or 4K |
Returns: the marketing copy (headline, sub-headline) plus 3 generated image variations as base64 image content blocks. The full structured response is also available under structuredContent.
Example prompt (in Claude Code):
Use markitup_generate with the screenshot at https://example.com/dashboard.png — highlight the export button and pitch it for a marketing landing page using the bold_marketing template.
markitup_regenRegenerate one variation from a previous markitup_generate call. Costs 1 credit by default (charge_credit: false to skip).
The LLM must pass back the text_analysis object from the previous generate's structuredContent.text so the regenerated visual stays on-brand with the same headline / sub-headline. variation_index selects which slot (0–2).
markitup_extendAI outpaint — extend an image to a larger canvas / different aspect ratio. Costs 1 credit.
| Argument | Type | Required | Description |
|---|---|---|---|
image_url / image_base64 | string | one-of | Source image |
aspect_ratio | string | yes | Target ratio (16:9, 9:16, etc.) |
target_width / target_height | number | yes | Output pixel dimensions |
image_size | string | no | 1K, 2K, or 4K |
markitup_remove_backgroundRemove the background from an image via Photoroom's HD model. Returns a transparent PNG. Costs 1 credit (free for active Pro/Power subscribers).
| Argument | Type | Required | Description |
|---|---|---|---|
image_url / image_base64 | string | one-of | Source image |
| Var | Required | Description |
|---|---|---|
MARKITUP_API_KEY | yes | API key from your MarkItUp dashboard |
MARKITUP_API_BASE | no | Override the API base URL. Default: https://markitup.app/api/v1. Useful for testing against staging. |
git clone https://github.com/markitup/mcp-server.git
cd mcp-server
npm install
npm run build
# Point your MCP client config at the local build:
{
"command": "node",
"args": ["/absolute/path/to/mcp-server/dist/index.js"],
"env": { "MARKITUP_API_KEY": "mk_test_..." }
}
MARKITUP_API_KEY to source control.The server surfaces clean human-readable errors for the common cases:
Invalid or missing MARKITUP_API_KEY — set or rotate the key.Out of MarkItUp credits — top up at https://markitup.app/credits.Rate limit exceeded — wait briefly and retry.MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.