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

mcp-nexus

v1.2.2

Published

KR: Nexus Repository Manager 3 API 연동 MCP 서버. EN: MCP server for Nexus Repository Manager 3 operations over stdio and Streamable HTTP.

Readme

Nexus MCP Server (mcp-nexus)

Sonatype Nexus Repository Manager 3와 연동하여 LLM이 패키지와 아티팩트를 조회, 제어할 수 있게 돕는 Model Context Protocol (MCP) 서버입니다.

기능 (MCP Tools)

조회 (Read)

  • nexus_search_components: 컴포넌트(패키지) 검색
  • nexus_list_repositories: 사용 가능한 레포지토리 목록 조회

제어 (CRUD)

  • nexus_upload_component: 로컬 파일 경로를 받아 특정 레포지토리에 파일 업로드 (CREATE)
  • nexus_delete_component: ID를 통해 Nexus 내부의 컴포넌트를 영구 삭제 (DELETE)
  • nexus_custom_request: Nexus REST API로 직접 POST, PUT, DELETE 요청을 보낼 수 있는 범용 도구 (UPDATE 등 인프라 설정 제어용)

참고: 모든 도구와 파라미터 설명은 **한국어(KR)와 영어(EN)**가 병기되어 있습니다.

환경 변수 (Environment Variables)

Nexus 서버와 통신하기 위한 설정입니다.

  • NEXUS_URL (필수): Nexus 서버 API 주소 (기본값: http://localhost:8081)
  • NEXUS_USERNAME (선택): Nexus 접속 계정 (업로드 등 인증이 필요한 제어 시 필수)
  • NEXUS_PASSWORD (선택): Nexus 접속 비밀번호 (업로드 등 인증이 필요한 제어 시 필수)
  • PORT (선택): HTTP 서버 포트 (HTTP/SSE 모드 구동 시 사용, 기본값: 3000)
  • TRANSPORT (선택): http 또는 sse 설정 시 HTTP 서버 구동 (미설정 시 stdio)

실행 방법

로컬 실행 (npx)

{
  "mcpServers": {
    "nexus-mcp": {
      "command": "npx",
      "args": ["-y", "mcp-nexus"],
      "env": {
        "NEXUS_URL": "http://nexus.example.com",
        "NEXUS_USERNAME": "admin",
        "NEXUS_PASSWORD": "password123"
      }
    }
  }
}

(참고: 패키지명이 충돌하여 스코프가 붙었을 경우 @itapi-core/mcp-nexus로 사용할 수 있습니다.)