An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

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": ""
}
}
}
}
```