🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

getpronto-mcp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

getpronto-mcp

MCP server for Get Pronto image hosting and transformation

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

GetPronto MCP Server

An MCP (Model Context Protocol) server that lets AI agents use Get Pronto image hosting and transformation services natively.

Full documentation can be found in our docs area.

Quick Start

Add to your Claude Code settings (.claude/settings.json):

{
  "mcpServers": {
    "getpronto": {
      "command": "npx",
      "args": ["-y", "getpronto-mcp"],
      "env": {
        "GETPRONTO_API_KEY": "pronto_sk_..."
      }
    }
  }
}

Or without a key — the agent will generate an ephemeral test key on demand:

{
  "mcpServers": {
    "getpronto": {
      "command": "npx",
      "args": ["-y", "getpronto-mcp"]
    }
  }
}

Tools

ToolDescription
generate_test_keyGenerate an ephemeral API key with limited quotas (no signup required)
upload_imageUpload from a file path, URL, or data URL
list_filesList files with pagination and folder filtering
get_fileGet file details (URL, dimensions, metadata)
delete_fileDelete a file
transform_imageGenerate a transformed image URL (resize, format, blur, crop, etc.)

Ephemeral Test Keys

If no API key is configured, the agent can call generate_test_key to get a temporary key instantly — no signup or account needed.

LimitValue
Storage100 MB
Monthly bandwidth500 MB
Monthly transforms100
Max file size10 MB (images only)
TTL7 days

After 7 days, the ephemeral account and all its files are automatically deleted.

Environment Variables

VariableDescriptionDefault
GETPRONTO_API_KEYYour Get Pronto secret API keyNone (use generate_test_key)
GETPRONTO_BASE_URLAPI base URLhttps://api.getpronto.io/v1

Transform Options

The transform_image tool supports:

  • Resize: width, height, fit (cover, contain, fill, inside, outside)
  • Quality: 1-100
  • Blur: Gaussian blur (0.3-1000)
  • Sharpen: Boolean
  • Grayscale: Boolean
  • Rotate: -360 to 360 degrees
  • Format: jpeg, png, webp, avif
  • Border: { width, color } (hex color, e.g. FF0000)
  • Crop: { x, y, width, height }

Keywords

mcp

FAQs

Package last updated on 28 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts