https://github.com/douglarek/unsplash-mcp-server
🔎 A MCP server for Unsplash image search.
https://github.com/douglarek/unsplash-mcp-server
mcp-go mcp-server
Last synced: 8 months ago
JSON representation
🔎 A MCP server for Unsplash image search.
- Host: GitHub
- URL: https://github.com/douglarek/unsplash-mcp-server
- Owner: douglarek
- License: mit
- Created: 2025-03-18T16:41:04.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2025-03-18T16:48:21.000Z (8 months ago)
- Last Synced: 2025-03-18T17:49:21.653Z (8 months ago)
- Topics: mcp-go, mcp-server
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mcp-servers - **unsplash-mcp-server** - 🔎 A MCP server for Unsplash image search. `go` `mcp-go` `mcp-server` `mcp` `server` `go install douglarek/unsplash-mcp-server@latest` (⚙️ DevOps)
- metorial-index - Unsplash Server - Access a vast library of high-quality images from Unsplash through a simplified API integration. Fetch stunning images on demand to enhance visual content in applications. (Image and Video Generation)
README
# Unsplash MCP Server
A rewrite of the [Unsplash MCP Server](https://github.com/hellokaton/unsplash-mcp-server) using the [mark3labs/mcp-go](https://github.com/mark3labs/mcp-go) library.
## Usage
Before building, you must install go 1.24+ first.
```bash
git clone https://github.com/douglarek/unsplash-mcp-server.git
cd unsplash-mcp-server
make build
```
### Cursor Editor Integration
To use this server in Cursor, you can add the following to your `mcp.json` file:
```json
{
"mcpServers": {
"unsplash": {
"command": "/cmd/server/unsplash-mcp-server",
"args": [],
"env": {
"UNSPLASH_ACCESS_KEY": ""
}
}
}
}
```