npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@aitutorlab/unsplash-mcp

v1.0.0

Published

Unsplash API integration for Model Context Protocol

Readme

Unsplash MCP Server

이 프로젝트는 Model Context Protocol (MCP)을 지원하는 어플리케이션(Claude Desktop, Cursor 등)에서 Unsplash의 사진 검색 및 데이터 기능을 연동하여 사용할 수 있도록 해주는 MCP 서버입니다.

기능 (Features)

이 서버는 다음과 같은 툴(Tools)을 제공합니다:

  • search_photos: 키워드, 색상, 방향 등의 필터를 기반으로 사진 검색
  • get_random_photo: 랜덤 사진 가져오기 (키워드, 컬렉션 제한 가능)
  • list_topics: Unsplash에서 관리하는 토픽(카테고리) 목록 조회
  • get_topic_photos: 특정 토픽의 사진 조회
  • get_collection_photos: 특정 컬렉션의 사진 조회
  • get_photo: 단일 사진의 상세 정보 조회
  • get_photo_statistics: 특정 사진의 조회수 및 다운로드 통계 확인

사전 준비 (Prerequisites)

이 서버를 사용하려면 Unsplash Developer 계정과 API Access Key가 필요합니다.

  1. Unsplash Developers에 접속하여 회원가입/로그인합니다.
  2. 새 애플리케이션을 생성합니다.
  3. 발급된 Access Key를 복사합니다.

설치 및 사용 (Installation & Usage)

Claude Desktop에서 사용하기

Claude Desktop의 환경설정 파일(mcp_config.json)을 열고 아래와 같이 등록합니다.

  • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "unsplash-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@aitutorlab/unsplash-mcp"
      ],
      "env": {
        "UNSPLASH_ACCESS_KEY": "여기에_발급받으신_언스플래시_키_입력"
      }
    }
  }
}

설정 후 Claude Desktop을 재시작하면 Claude가 필요에 따라 자동으로 이 서버의 툴을 호출하여 이미지를 검색합니다.

라이선스

ISC License