Google Image Search Mcp Python — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Google Image Search Mcp Python (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Python-based MCP (Model Context Protocol) server that provides tools for searching and downloading images using Google Image Search.
uv venvLinux/macOS:
source .venv/bin/activateWindows:
.venv\Scripts\activateLinux/macOS:
uv pip install -r requirements.txtWindows:
uv pip install -r requirements.txt.env file with your SerpAPI key:(Get your key here: https://serpapi.com/dashboard)
SERP_API_KEY=your_api_key_hereYou can either run the server:
uv run main.pyor test the MCP server with inspector:
npx @modelcontextprotocol/inspector uv run main.pyRun the server:
uv run main.pyIn VSCode, add this MCP server configuration to your mcp-servers.json file:
{
"servers": {
"search-images": {
"command": "uv",
"args": [
"--directory",
"C:\\Users\\YOURUSERNAME\\google-image-search-mcp-python",
"run",
"main.py"
]
}
}
}The server provides the following tools:
search_images_tool: Search for images using Google Image Searchquery: The search query for finding imageslimit: Maximum number of results to return (default: 10)download_image_tool: Download an image to a local directoryimage_url: URL of the image to downloadoutput_path: Directory path where the image should be savedfilename: Filename for the downloaded image (including extension)use your search images tool to search for 5 images about "cute cats" and download the best one in ./gatitos/
# Search for images
results = await search_images_tool("cute puppies", limit=5)
# Download an image
saved_path = await download_image_tool(
image_url="https://example.com/image.jpg",
output_path="./images",
filename="puppy.jpg"
)The tools provide detailed error messages when something goes wrong. All errors are logged to stderr and returned in a structured format with an isError flag.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.