MCP server for img-src.io Image CDN - upload, transform, and deliver images through AI assistants
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"img-src": {
"env": {
"IMG_SRC_API_KEY": "imgsrc_your_api_key_here"
},
"args": [
"@img-src/mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Model Context Protocol (MCP) server for img-src.io image hosting API.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@img-src/mcp-server' 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 @img-src/mcp-server against OSV.dev.
Click any tool to inspect its schema.
imagesJSON metadata for images including dimensions, formats, and CDN URLs
imgsrc://images/{imageId}
upload-and-shareUpload an image and get shareable CDN URLs
check-usageCheck account usage and storage status
find-imagesSearch for images by keyword
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.img-src-io/mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Model Context Protocol (MCP) server for img-src.io image hosting API.
This server enables AI assistants like Claude to interact with your img-src.io account - uploading, searching, listing, and managing images directly through natural language.
pnpm add -g @img-src/mcp-server
Or run directly with pnpm dlx:
pnpm dlx @img-src/mcp-server
| Variable | Required | Description |
|---|---|---|
IMG_SRC_API_KEY | Yes | Your img-src.io API key (starts with imgsrc_) |
IMG_SRC_API_URL | No | API base URL (default: https://api.img-src.io) |
imgsrc_)Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"img-src": {
"command": "npx",
"args": ["@img-src/mcp-server"],
"env": {
"IMG_SRC_API_KEY": "imgsrc_your_api_key_here"
}
}
}
}
Add to your project's .mcp.json (project-scoped) or ~/.claude/mcp.json (global):
{
"mcpServers": {
"img-src": {
"command": "npx",
"args": ["@img-src/mcp-server"],
"env": {
"IMG_SRC_API_KEY": "imgsrc_your_api_key_here"
}
}
}
}
Or add it via the CLI:
claude mcp add img-src -- npx @img-src/mcp-server
Then set the API key in your environment or .env file:
export IMG_SRC_API_KEY=imgsrc_your_api_key_here
Open Cursor Settings (Cmd+, on macOS / Ctrl+, on Windows/Linux)
Navigate to Features > MCP Servers
Click "Add new MCP server"
Enter the following configuration:
img-srccommandnpx @img-src/mcp-serverAdd the environment variable IMG_SRC_API_KEY with your API key.
Alternatively, create or edit .cursor/mcp.json in your project root:
{
"mcpServers": {
"img-src": {
"command": "npx",
"args": ["@img-src/mcp-server"],
"env": {
"IMG_SRC_API_KEY": "imgsrc_your_api_key_here"
}
}
}
}
Create .vscode/mcp.json in your workspace:
{
"servers": {
"img-src": {
"type": "stdio",
"command": "npx",
"args": ["@img-src/mcp-server"],
"env": {
"IMG_SRC_API_KEY": "imgsrc_your_api_key_here"
}
}
}
}
Or add via CLI:
code --add-mcp '{"name":"img-src","command":"npx","args":["@img-src/mcp-server"],"env":{"IMG_SRC_API_KEY":"imgsrc_your_api_key_here"}}'
Note: VS Code uses
"servers"(not"mcpServers") and requires"type": "stdio".
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"img-src": {
"command": "npx",
"args": ["@img-src/mcp-server"],
"env": {
"IMG_SRC_API_KEY": "imgsrc_your_api_key_here"
}
}
}
}
Open the Cline extension in VS Code, click the MCP Servers icon > Configure MCP Servers, then add:
{
"mcpServers": {
"img-src": {
"command": "npx",
"args": ["@img-src/mcp-server"],
"env": {
"IMG_SRC_API_KEY": "imgsrc_your_api_key_here"
}
}
}
}
Add to your Zed settings (~/.config/zed/settings.json):
{
"context_servers": {
"img-src": {
"command": "npx",
"args": ["@img-src/mcp-server"],
"env": {
"IMG_SRC_API_KEY": "imgsrc_your_api_key_here"
}
}
}
}
Note: Zed uses
"context_servers"as the key, embedded within the mainsettings.json.
In IntelliJ IDEA, WebStorm, P