- With this mcp server, you can easily search picture from unsplash
- With this project, you can easily learn how to write MCP Server with JAVA
search two house picture from unsplash and write to the document
- Clone this project
git clone https://github.com/JavaProgrammerLB/unsplash-mcp-server.git
- Build
cd unsplash-mcp-server
mvn clean package
- Get Unsplash Access Key
- visit unsplash
- create an unsplash application
- find out the access key in unsplash application detail page
- Config MCP Server
{
"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}"
}
}
}
}