MCP Google Images Search MCP Server

MCP server for searching images with Google

Local serverstdioTypeScript

What is the MCP Google Images Search MCP server?

Mcp google images search mcp server lets Claude, Cursor and other MCP clients work with MCP Google Images Search directly. MCP server for searching images with Google.

What MCP Google Images Search does

Unlike other tools that return text descriptions or links, this MCP displays search results as actual images in your conversation. Works with Cline and Windsurf.

Tools it exposes

Once connected, the assistant can call these 2 tools directly:

  • startIndex — For pagination
  • Requirements — The Requirements tool exposed by this server

Installing the mcp google images search mcp server

Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.

Configuration

Before the server will start you need to supply 2 environment variables: API_KEY, SEARCH_ENGINE_ID. Keep credentials in your client's env block or a secrets manager rather than committing them.

Requirements

  • Node.js v20+ - Google Cloud Platform account (free tier sufficient) - Compatible IDE: Cline or Windsurf

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. MCP Google Images Search sits in that group, and the shape of its toolset — startIndex, Requirements — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by srigi, written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp google images search mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
startIndexFor pagination
RequirementsThe Requirements tool exposed by this server.

How to install the MCP Google Images Search MCP server

{
  "mcpServers": {
    "googleImagesSearch": {
      "command": "npx",
      "args": ["-y", "@srigi/mcp-google-images-search"],
      "env": {
        "API_KEY": "your-google-api-key-here",
        "SEARCH_ENGINE_ID": "your-search-engine-id-here"
      },
      "autoApprove": ["search_image", "persist_image"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js v20+ - Google Cloud Platform account (free tier sufficient) - Compatible IDE: Cline or Windsurf
VariableDescriptionRequired
API_KEYCredential the server authenticates with.Yes
SEARCH_ENGINE_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use MCP Google Images Search to startIndex.
  • Use MCP Google Images Search to Requirements.

Frequently asked questions

It connects MCP Google Images Search to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (startIndex, Requirements) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Google Images Search directly.