Skip to main content
Glama
qpd-v

mcp-image-downloader

by qpd-v

MCP图像下载器

提供图片下载和优化工具的 MCP 服务器。该服务器基于模型上下文协议 (MCP) 构建,支持 AI 助手从 URL 下载图片并执行基本的图片优化任务。

特征

  • 从 URL 下载图像并进行适当的错误处理

  • 使用以下选项优化图像:

    • 调整大小(保持纵横比)

    • 质量调整(JPEG/WebP)

    • 格式转换

Related MCP server: img-src MCP Server

安装

# Clone the repository
git clone https://github.com/qpd-v/mcp-image-downloader.git
cd mcp-image-downloader

# Install dependencies
npm install

# Build the project
npm run build

用法

作为 MCP 服务器

将服务器添加到您的 MCP 配置中(例如,在 Claude Desktop 的配置中):

{
  "mcpServers": {
    "image-downloader": {
      "command": "node",
      "args": ["/path/to/mcp-image-downloader/build/index.js"]
    }
  }
}

可用工具

下载图片

将图像从 URL 下载到指定路径。

参数:

  • url :要下载的图像的 URL

  • outputPath :保存图像的路径

优化图像

创建图像的优化版本。

参数:

  • inputPath :输入图像的路径

  • outputPath :保存优化图像的路径

  • width (可选):目标宽度(如果仅指定宽度,则保持纵横比)

  • height (可选):目标高度(如果仅指定高度,则保持纵横比)

  • quality (可选):JPEG/WebP 质量(1-100)

发展

# Run in development mode
npm run start

# Build the project
npm run build

要求

  • Node.js 16 或更高版本

  • NPM 或兼容的包管理器

执照

MIT 许可证 - 有关详细信息,请参阅LICENSE文件。

作者

qpd-v

版本

0.1.0 - 初始版本

Available Tools

2 tools
download_imageC

Download an image from a URL to a specified path

ParametersJSON Schema
NameRequiredDescriptionDefault
outputPathYesPath where to save the image
urlYesURL of the image to download

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions downloading to a path but doesn't cover critical aspects like error handling (e.g., invalid URLs, network failures), file overwriting behavior, supported image formats, or authentication needs. This leaves significant gaps for an agent to understand how the tool behaves in practice.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's function without unnecessary words. It is front-loaded and wastes no space, making it easy for an agent to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of a download operation (which involves network I/O and file system changes), the description is insufficient. With no annotations, no output schema, and minimal behavioral details, it fails to provide enough context for safe and effective use. Key aspects like error conditions, performance implications, or return values are missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, clearly documenting both parameters ('url' and 'outputPath'). The description adds minimal value beyond this, only reiterating that the URL is for the image and the path is for saving it. This meets the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('download') and resource ('image from a URL'), making the purpose immediately understandable. However, it doesn't differentiate from the sibling tool 'optimize_image' (which likely processes images rather than downloading them), so it doesn't reach the highest score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'optimize_image' or other potential tools. It states what the tool does but offers no context about appropriate use cases, prerequisites, or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

optimize_imageC

Create an optimized version of an image

ParametersJSON Schema
NameRequiredDescriptionDefault
heightNoTarget height (maintains aspect ratio if only height is specified)
inputPathYesPath to the input image
outputPathYesPath where to save the optimized image
qualityNoJPEG/WebP quality (1-100)
widthNoTarget width (maintains aspect ratio if only width is specified)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden but only states the basic action without disclosing behavioral traits like performance characteristics, error conditions, or side effects. It mentions optimization but doesn't explain what that entails (e.g., compression, format changes).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero wasted words. It's front-loaded with the core purpose and appropriately sized for the tool's complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations and no output schema, the description is insufficient. It doesn't explain what 'optimized' means, what formats are supported, or what happens on failure. The context signals indicate moderate complexity (5 parameters) that warrants more explanation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds no additional parameter semantics beyond what's in the schema, meeting the baseline for high coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Create an optimized version') and resource ('of an image'), making the purpose immediately understandable. It distinguishes from the sibling 'download_image' by focusing on transformation rather than retrieval, though it doesn't explicitly contrast them.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives, nor does it mention prerequisites or constraints. It simply states what the tool does without context about appropriate scenarios or limitations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 2 tool updatesv1.0.0
    • First observeddownload_image
    • First observedoptimize_image

TDQS

B3.1/5.0
Disambiguation5/5

The two tools have clearly distinct purposes: one downloads images from external sources, while the other processes existing images for optimization. There is no overlap in functionality, making it impossible to confuse them.

Naming Consistency5/5

Both tools follow a consistent verb_noun pattern (download_image and optimize_image) with clear, descriptive names. The naming convention is uniform and predictable throughout the set.

Tool Count2/5

With only two tools, the server feels under-scoped for an image downloader domain. Key operations like listing available images, handling errors, or supporting different image formats are missing, making the toolset too minimal for robust agent workflows.

Completeness2/5

The toolset is severely incomplete for an image downloader domain. It lacks basic CRUD operations such as listing or deleting images, error handling tools, and support for varied input sources or formats, which will likely cause agent failures in practical use.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/qpd-v/mcp-image-downloader'

If you have feedback or need assistance with the MCP directory API, please join our Discord server