Claude Code Custom Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Claude Code Custom Mcp Server (MCP Server) 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 Model Context Protocol (MCP) server that provides powerful image processing tools for Claude Code. This server implements three main functionalities: downloading toy-related images from the web, resizing images, and removing backgrounds from images.
fetch_toy_image)resize_image)remove_background_as_png) mkdir mcp-toy-image-tools && cd mcp-toy-image-tools pip install -r requirements.txt python server.py docker build -t mcp-toy-image-tools-server . mkdir -p images input output docker run --rm -i \
--name mcp-toy-image-tools \
-v $(pwd)/images:/app/images \
-v $(pwd)/input:/app/input \
-v $(pwd)/output:/app/output \
mcp-toy-image-tools-serverFor Docker execution:
{
"mcpServers": {
"image-tools-server-docker": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--name", "mcp-toy-image-tools",
"-v", "${PWD}/images:/app/images",
"-v", "${PWD}/input:/app/input",
"-v", "${PWD}/output:/app/output",
"mcp-toy-image-tools-server"
],
"cwd": "/path/to/your/mcp-toy-image-tools"
}
}
}After updating your MCP configuration, restart Claude Code to load the new server.
Once integrated with Claude Code, you can use these commands:
Please use the fetch_toy_image tool to download 5 robot toy images to the ./images directory.Can you resize the image at ./images/robot_toy_1.jpg to 800x600 pixels?Please remove the background from ./images/robot_toy_1.jpg and save it as a PNG.mcp-toy-image-tools/
├── server.py # Main MCP server implementation
├── requirements.txt # Python dependencies
├── Dockerfile # Docker container configuration
├── .mcp.json # Claude Code MCP configuration
├── README.md # This documentation
├── images/ # Directory for downloaded/processed images
├── input/ # Directory for input images (Docker)
└── output/ # Directory for output images (Docker)PYTHONPATH: Set to project directory for proper module resolution/app/images: Directory for downloaded and processed images/app/input: Input directory for source images/app/output: Output directory for processed images pip install duckduckgo-searchmcp-userTo run with debug logging:
# Direct Python
PYTHONPATH=. python server.py --log-level DEBUG
# Docker
docker run --rm -i -e LOG_LEVEL=DEBUG mcp-toy-image-tools-server.mcp.json is in the correct locationcwd path is correctTo add new image processing tools:
Tool(
name="your_new_tool",
description="Description of what it does",
inputSchema={...}
) elif name == "your_new_tool":
return await your_new_tool_function(arguments) async def your_new_tool_function(arguments: dict[str, Any]) -> list[TextContent]:
# Implementation here
passTest the server independently:
echo '{"method": "tools/list", "params": {}}' | python server.pyThis project is provided as-is for educational and development purposes. Please respect the terms of service of image sources and AI models used.
For issues and questions:
Note: This tool downloads images from the internet and uses AI models for processing. Please use responsibly and respect copyright and terms of service of source websites.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.