The Unsplash Image Search MCP Server is a Java-based implementation that allows users to search for images from Unsplash seamlessly. This project is designed to help developers understand how to create an MCP server using Java while integrating with Unsplash's API for image retrieval.
git clone https://github.com/JavaProgrammerLB/unsplash-mcp-server.git
cd unsplash-mcp-server
mvn clean package
{
"mcpServers": {
"unsplash": {
"command": "java",
"args": [
"-Dspring.ai.mcp.server.stdio=true",
"-Dspring.main.web-application-type=none",
"-Dlogging.pattern.console=",
"-jar",
"/ABSOLUTE/PATH/target/unsplash-mcp-server-1.0.jar"
],
"env": {
"UNSPLASH_ACCESS_KEY": "${YOUR UNSPLASH ACCESS KEY}"
}
}
}
}
Special thanks to the Python Version Unsplash MCP Server for inspiration.
This project is a Java implementation of an MCP server for searching images from Unsplash. It serves as both a functional tool and a learning resource for developers.
This project is licensed under the MIT License.