Image hosting and sharing
## Imgur MCP Server: Image Hosting and Community Platform The **Imgur MCP Server** integrates the popular image hosting and sharing platform directly into Google Antigravity, enabling AI assistants to upload, manage, and retrieve images programmatically. This integration brings viral image hosting capabilities to your development workflow for building image-centric applications. ### Why Imgur MCP? - **Reliable Hosting**: Host images on battle-tested infrastructure serving billions of views monthly - **Album Management**: Organize images into albums with descriptions and privacy settings - **Community Features**: Access viral content, trending images, and community engagement metrics - **Direct Links**: Get direct image URLs without landing pages for clean embedding - **Anonymous Uploads**: Upload images without requiring user authentication for quick sharing ### Key Features #### 1. Image Upload ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Upload this screenshot to Imgur and get a shareable direct link" }], tools=[{ "name": "imgur_upload", "description": "Upload images to Imgur" }] ) ``` #### 2. Album Management ```python # Create and manage albums response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create a new album called Project Screenshots and add these images" }], tools=[{"name": "imgur_album", "description": "Manage image albums"}] ) ``` #### 3. Gallery Search ```python # Search Imgur gallery response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find trending programming memes from the Imgur gallery" }], tools=[{"name": "imgur_gallery", "description": "Search and browse gallery"}] ) ``` #### 4. Image Management ```python # Manage uploaded images response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Update the title and description of my recently uploaded image" }], tools=[{"name": "imgur_manage", "description": "Manage image metadata"}] ) ``` ### Configuration ```json { "mcpServers": { "imgur": { "command": "npx", "args": ["-y", "@anthropic/mcp-imgur"], "env": { "IMGUR_CLIENT_ID": "your-client-id", "IMGUR_CLIENT_SECRET": "your-client-secret" } } } } ``` ### Use Cases **Screenshot Sharing**: Quickly upload and share screenshots with permanent, direct links for documentation. **Bug Reports**: Attach visual evidence to bug reports with reliable, long-term image hosting. **Community Applications**: Build apps that leverage Imgur community content and engagement features. **Content Aggregation**: Collect and organize images from various sources into shareable albums. The Imgur MCP Server brings reliable image hosting directly into your development workflow, enabling easy image sharing and management.
{
"mcpServers": {
"imgur": {
"mcpServers": {
"imgur": {
"env": {
"IMGUR_CLIENT_ID": "your-client-id",
"IMGUR_CLIENT_SECRET": "your-client-secret"
},
"args": [
"-y",
"imgur-mcp-server"
],
"command": "npx"
}
}
}
}
}