Skip to main content
Glama

resize_image

Resize image files to specified height and width using methods like fit, scale, cover, or thumb. Save output to a designated path for efficient image processing.

Instructions

Resize an image file

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
heightYesThe height to resize the image to
imagePathYesThe ABSOLUTE path to the image file to resize
methodNoThe method describes the way your image will be resized.fit
outputPathNoThe ABSOLUTE path to save the resized image file
widthYesThe width to resize the image to

Implementation Reference

  • MCP tool handler for 'resize_image' that invokes the resize logic and returns a success response.
    resize_image: async (request) => {
      await handleResizeImageTool(
        request.params.arguments as {
          imagePath: string;
          outputPath?: string;
          width: number;
          height: number;
          method: 'scale' | 'fit' | 'cover' | 'thumb';
        },
      );
      return {
        content: [
          {
            type: 'text',
            text: 'Image resized successfully',
          },
        ],
        metadata: {},
      };
    },
  • Tool schema definition for 'resize_image', including input schema with properties for image path, dimensions, resize method, and output path.
    const RESIZE_IMAGE_TOOL: Tool = {
      name: 'resize_image',
      description: 'Resize an image file',
      inputSchema: {
        type: 'object',
        properties: {
          imagePath: {
            type: 'string',
            description: 'The ABSOLUTE path to the image file to resize',
            example: '/Users/user/Downloads/image.jpg',
          },
          outputPath: {
            type: 'string',
            description: 'The ABSOLUTE path to save the resized image file',
            example: '/Users/user/Downloads/image_thumbnail.jpg',
          },
          method: {
            type: 'string',
            description: 'The method describes the way your image will be resized.',
            enum: ['scale', 'fit', 'cover', 'thumb'],
            default: 'fit',
            example: 'fit',
          },
          width: {
            type: 'number',
            description: 'The width to resize the image to',
            example: 1024,
          },
          height: {
            type: 'number',
            description: 'The height to resize the image to',
            example: 1024,
          },
        },
        required: ['imagePath', 'width', 'height'],
      },
    };
  • src/tools.ts:117-117 (registration)
    Registration of the 'resize_image' tool in the exported TOOLS array for MCP tool discovery.
    export const TOOLS = [COMPRESS_LOCAL_IMAGE_TOOL, COMPRESS_REMOTE_IMAGE_TOOL, RESIZE_IMAGE_TOOL];
  • Helper function implementing the core resize logic using the tinify library to resize the image to specified dimensions.
    async function handleResizeImageTool({
      imagePath,
      outputPath,
      width,
      height,
      method,
    }: {
      imagePath: string;
      outputPath?: string;
      width: number;
      height: number;
      method?: 'scale' | 'fit' | 'cover' | 'thumb';
    }) {
      const source = tinify.fromFile(imagePath);
      const resized = source.resize({
        method: method || 'fit',
        width,
        height,
      });
    
      let dest = outputPath;
      if (!dest) {
        const dir = path.dirname(imagePath);
        const basename = path.basename(imagePath, path.extname(imagePath));
        const ext = path.extname(imagePath).slice(1);
        dest = path.join(dir, `${basename}_${width}x${height}.${ext}`);
      }
      await resized.toFile(dest);
    }
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. 'Resize an image file' implies a mutation operation but doesn't specify whether it modifies the original file or creates a new one, what formats are supported, error conditions, or performance characteristics. It lacks critical context for safe and effective use.

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's appropriately sized and front-loaded, 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?

For a mutation tool with 5 parameters, no annotations, and no output schema, the description is insufficient. It doesn't explain what the tool returns, how it handles errors, or the relationship between input and output files. Given the complexity and lack of structured data, more contextual information is needed.

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 parameters are well-documented in the schema itself. The description adds no additional parameter information beyond the basic action. This meets the baseline of 3 since the schema does the heavy lifting, but the description doesn't enhance understanding of parameter interactions or constraints.

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 'Resize an image file' clearly states the verb ('resize') and resource ('image file'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'compress_local_image' or 'compress_remote_image' which serve different purposes (compression vs resizing), so it doesn't fully distinguish from alternatives.

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 its siblings. There's no mention of alternatives, prerequisites, or specific contexts where resizing is appropriate compared to compression tools. The agent must infer usage from tool names alone.

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

Install Server

Other Tools

Related Tools

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/zhendi/tinypng-mcp-server'

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