CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Getpronto

getpronto-io/getpronto-mcp
authSTDIOregistry active
Summary

Connects Claude to Get Pronto's image hosting and transformation API. You get six tools: upload images from local paths, URLs, or data URLs, list and retrieve files with pagination, delete uploads, and generate transformed image URLs with resize, crop, blur, format conversion, and other options. Includes a generate_test_key tool that spins up ephemeral accounts with 100MB storage and 7-day TTL, so you can test without signing up. Useful when you need Claude to handle image uploads and apply transformations on the fly, whether you're prototyping visual workflows or building image processing into agent actions.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

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 }

Related

  • getpronto-sdk — JavaScript/TypeScript SDK
  • Get Pronto Docs — Full documentation
  • Get Pronto — Image hosting and transformation SaaS
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

GETPRONTO_API_KEYsecret

Your Get Pronto secret API key. If omitted, use the generate_test_key tool to get an ephemeral key.

GETPRONTO_BASE_URL

API base URL. Defaults to https://api.getpronto.io/v1

Registryactive
Packagegetpronto-mcp
TransportSTDIO
AuthRequired
UpdatedMar 28, 2026
View on GitHub