MCP Image Tools Server
Provides image processing tools for Claude Code, including downloading toy images, resizing, and AI-powered background removal.
README
MCP Image Tools Server
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.
- Anthropic MCP Pythone SDK Github repo: https://github.com/modelcontextprotocol/python-sdk?tab=readme-ov-file
Features
🧸 Toy Image Fetcher (fetch_toy_image)
- Downloads toy-related images from DuckDuckGo search
- Automatically prefixes search terms with "toy" for better results
- Supports downloading 1-10 images per request
- Saves images to a specified directory
🖼️ Image Resizer (resize_image)
- Resize images to specific dimensions
- Option to maintain aspect ratio
- High-quality resampling using Lanczos algorithm
- Support for all common image formats
✂️ Background Remover (remove_background_as_png)
- AI-powered background removal using state-of-the-art models
- Multiple model options (u2net, u2netp, silueta, isnet-general-use)
- Outputs PNG with transparent background
- Preserves main object details
Prerequisites
- Python 3.11 or higher
- Docker (for containerized deployment)
- Claude Code (for MCP client integration)
Installation
Option 1: Local Python Installation
-
Clone or create the project directory:
mkdir mcp-toy-image-tools && cd mcp-toy-image-tools -
Install Python dependencies:
pip install -r requirements.txt -
Run the server:
python server.py
Option 2: Docker Installation (Recommended)
-
Build the Docker image:
docker build -t mcp-toy-image-tools-server . -
Create necessary directories:
mkdir -p images input output -
Run the container:
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-server
Claude Code Integration
Step 1: Configure Claude Code
-
Copy the MCP configuration to your Claude Code settings:
For 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" } } } -
Update the
cwdpath to match your actual project directory.
Step 2: Restart Claude Code
After updating your MCP configuration, restart Claude Code to load the new server.
Usage Examples
Once integrated with Claude Code, you can use these commands:
Download Toy Images
Please use the fetch_toy_image tool to download 5 robot toy images to the ./images directory.
Resize Images
Can you resize the image at ./images/robot_toy_1.jpg to 800x600 pixels?
Remove Background
Please remove the background from ./images/robot_toy_1.jpg and save it as a PNG.
File Structure
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)
Dependencies
Python Libraries
- mcp: Anthropic's Model Context Protocol SDK
- Pillow: Python Imaging Library for image processing
- requests: HTTP client for downloading images
- duckduckgo-search: DuckDuckGo search API client
- torch/torchvision: PyTorch for AI model inference
System Dependencies (Docker only)
- OpenGL libraries for image processing
- GLib and threading libraries
- Various image format support libraries
Configuration Options
Environment Variables
PYTHONPATH: Set to project directory for proper module resolution
Volume Mounts (Docker)
/app/images: Directory for downloaded and processed images/app/input: Input directory for source images/app/output: Output directory for processed images
Troubleshooting
Common Issues
-
"duckduckgo-search library not available" error:
pip install duckduckgo-search -
Image download failures:
- Check internet connection
- Some images may be blocked by the source website
- The tool automatically retries with additional results
-
Background removal model download:
- First use may take longer as AI models are downloaded
- Ensure sufficient disk space (~100MB+ for models)
-
Permission errors (Docker):
- Ensure volume mount directories have proper permissions
- The container runs as non-root user
mcp-user
Debug Mode
To 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
Claude Code Connection Issues
-
Server not appearing in Claude Code:
- Check that
.mcp.jsonis in the correct location - Verify the
cwdpath is correct - Restart Claude Code after configuration changes
- Check that
-
Tool execution errors:
- Check server logs for detailed error messages
- Ensure all dependencies are installed
- Verify file paths are accessible
Development
Adding New Tools
To add new image processing tools:
-
Define the tool in
handle_list_tools():Tool( name="your_new_tool", description="Description of what it does", inputSchema={...} ) -
Implement the handler in
handle_call_tool():elif name == "your_new_tool": return await your_new_tool_function(arguments) -
Add the async function implementation:
async def your_new_tool_function(arguments: dict[str, Any]) -> list[TextContent]: # Implementation here pass
Testing
Test the server independently:
echo '{"method": "tools/list", "params": {}}' | python server.py
License
This project is provided as-is for educational and development purposes. Please respect the terms of service of image sources and AI models used.
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Test thoroughly
- Submit a pull request
Support
For issues and questions:
- Check the troubleshooting section above
- Review Claude Code MCP documentation
- Submit issues to the project repository
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.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。