Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"spronta": {
"env": {
"SPRONTA_API_KEY": "spronta_img_...",
"SPRONTA_PROJECT_ID": "your-project-id"
},
"args": [
"@spronta/mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for uploading, transforming, and serving images on a global CDN — directly from AI assistants.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@spronta/mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @spronta/mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in cloud / design
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP Server for GCP environment for interacting with various Observability APIs.
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
MCP Security Weekly
Get CVE alerts and security updates for io.github.spronta/mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for uploading, transforming, and serving images on a global CDN — directly from AI assistants.
Connect Claude, GPT, Cursor, Windsurf, or any MCP-compatible client to the Spronta Image CDN. Upload images from URLs or base64, apply real-time transforms (resize, crop, format conversion, smart crop, blurhash), create reusable presets, generate signed URLs, and monitor usage — all through natural language.
thumbnail, hero, og-image)npm install -g @spronta/mcp
# or use directly
npx @spronta/mcp
claude mcp add spronta \
-e SPRONTA_API_KEY=spronta_img_... \
-e SPRONTA_PROJECT_ID=your-project-id \
-- npx @spronta/mcp
Add to your MCP configuration file:
{
"mcpServers": {
"spronta": {
"command": "npx",
"args": ["@spronta/mcp"],
"env": {
"SPRONTA_API_KEY": "spronta_img_...",
"SPRONTA_PROJECT_ID": "your-project-id"
}
}
}
}
| Variable | Required | Description |
|---|---|---|
SPRONTA_API_KEY | Yes | Your project API key |
SPRONTA_PROJECT_ID | No | Default project ID (can also be passed per-tool) |
SPRONTA_API_URL | No | API base URL (default: https://app.spronta.com/api) |
| Tool | Description |
|---|---|
list_projects | List all image projects |
create_project | Create a new project |
get_project | Get project details with usage stats |
update_project | Update name or custom domain |
delete_project | Permanently delete a project |
| Tool | Description |
|---|---|
upload_image | Upload from URL or base64 — handles presigned upload, blurhash generation, and CDN URL creation in one call |
list_images | List images with pagination |
update_image | Update alt text and tags |
delete_image | Delete an image from CDN and storage |
| Tool | Description |
|---|---|
list_presets | List named transform presets |
create_preset | Create a preset (use in CDN URLs with ?t=name) |
update_preset | Update a preset's name or transforms |
delete_preset | Delete a preset |
| Tool | Description |
|---|---|
get_signing_config | Get URL signing configuration |
update_signing | Enable/disable HMAC-SHA256 signing |
generate_signed_url | Generate a signed CDN URL with optional expiration |
| Tool | Description |
|---|---|
get_usage | Get daily metrics (requests, bandwidth, transforms) |
build_cdn_url | Build a CDN URL with transform parameters (no API call) |
Once connected, just ask your AI:
> Upload this image to my project: https://example.com/photo.jpg
> Create a thumbnail preset: 200x200, cover crop, face detection, webp format
> How many requests did my project handle this week?
> Generate a signed URL for hero.jpg that expires in 1 hour
> List all my images and update the alt text on t
... [View full README on GitHub](https://github.com/spronta/mcp#readme)