Imgur
Upload and host images on Imgur. Free image hosting with direct links. No account needed for anonymous uploads.
🔑 Setup Required — Bring Your Own Key
This integration requires API credentials. Store them once via
setup_integration or the Dashboard Vault — they're encrypted
with AES-256-GCM and never exposed.
Required Credentials
imgur_client_id
Client ID
Client ID from api.imgur.com → your app. 15-character hex string.
Get your API key at apidocs.imgur.com →
Endpoints (3)
POST
upload-image
Upload an image to Imgur from a URL. Returns the Imgur URL, delete hash, and dimensions.
| Field | Type | Required | Description |
|---|---|---|---|
image |
string | ✓ Yes | Image URL to upload (JPEG, PNG, GIF, WEBP). |
title |
string | No | Image title. |
description |
string | No | Image description. |
GET
get-image
Get image details by Imgur ID: URL, dimensions, size, views, and upload date.
| Field | Type | Required | Description |
|---|---|---|---|
image_id |
string | ✓ Yes | Imgur image ID (7-char alphanumeric, e.g. "abc1234"). |
POST
delete-image
Delete an image using its delete hash (returned on upload). Cannot be undone.
| Field | Type | Required | Description |
|---|---|---|---|
delete_hash |
string | ✓ Yes | Delete hash from the upload response. |
MCP Tool Names
When using this integration through an AI assistant (Claude, ChatGPT, Cursor, etc.), the endpoints are available as MCP tools:
| Endpoint | MCP Tool Name |
|---|---|
| upload-image | imgur_upload_image |
| get-image | imgur_get_image |
| delete-image | imgur_delete_image |