tonihopponen/image-crawler-mcp-server
3.2
If you are the rightful owner of image-crawler-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Image Crawler MCP Server provides a seamless interface to access AWS Lambda-based image crawling services via the Model Context Protocol.
Image Crawler MCP Server
This MCP server provides access to your AWS Lambda-based SaaS image crawling service through the Model Context Protocol.
Setup
- Clone the repository
- Install dependencies:
npm install
- Copy
.env.example
to.env
and configure your endpoints - Build the project:
npm run build
- Configure Claude Desktop (see Configuration section)
Configuration
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"image-crawler": {
"command": "node",
"args": ["/path/to/your/image-crawler-mcp/dist/index.js"],
"env": {
"LAMBDA_ENDPOINT": "https://your-api-gateway-url.amazonaws.com/prod",
"API_KEY": "your-api-key"
}
}
}
}