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

psw-mcp-preview

v1.1.2

Published

프로젝트 및 태스크 관리를 위한 FastMCP 스타일 MCP 서버

Downloads

27

Readme

psw-mcp-preview

FastMCP 스타일 API를 제공하는 프로젝트 및 태스크 관리용 MCP (Model Context Protocol) 서버입니다.

🎉 Mock 버전 (v1.1.2)

이 버전은 외부 API 연결 없이 트레이딩 플랫폼 구축 프로젝트의 샘플 데이터로 동작합니다. API 키 없이도 바로 사용할 수 있습니다!

포함된 샘플 프로젝트

  1. 차세대 AI 트레이딩 플랫폼 - 머신러닝 기반 실시간 트레이딩 시스템
  2. DeFi 통합 거래소 - 중앙화/탈중앙화 거래소 통합 플랫폼
  3. 퀀트 리서치 플랫폼 - 백테스팅 및 전략 개발 도구

설치

# 전역 설치
npm install -g psw-mcp-preview

# 또는 npx로 직접 실행 (API 키 불필요!)
npx psw-mcp-preview

사용법

Claude MCP 설정

Claude의 MCP 설정에 다음을 추가하세요:

{
  "mcpServers": {
    "psw-ai": {
      "command": "npx",
      "args": ["-y", "--package=psw-mcp-preview@latest", "psw-ai"]
    }
  }
}

참고: Mock 버전이므로 API 키 설정이 필요 없습니다!

제공되는 도구들

  • connect_project - 프로젝트 UID로 프로젝트에 연결
  • disconnect_project - 현재 프로젝트 연결 해제
  • list_projects - 사용 가능한 모든 프로젝트 목록 조회
  • read_project - 특정 프로젝트의 상세 정보 조회
  • list_task - 연결된 프로젝트의 태스크 목록 조회
  • read_task - 특정 태스크의 상세 정보 조회
  • get_next_task - 우선순위 기반 다음 추천 태스크 조회

Claude에서 사용 예시

"프로젝트 목록을 보여줘"
→ 3개의 트레이딩 관련 프로젝트가 표시됩니다

"trading-platform-2025 프로젝트에 연결해줘"
→ AI 트레이딩 플랫폼 프로젝트에 연결됩니다

"현재 진행 중인 태스크를 보여줘"
→ 실시간 시세 엔진, AI 모델 개발 등의 태스크가 표시됩니다

"다음에 할 작업을 추천해줘"
→ 우선순위가 높은 태스크를 추천합니다

샘플 태스크 예시

트레이딩 플랫폼 프로젝트에는 다음과 같은 태스크들이 포함되어 있습니다:

  • 🔴 긴급: 실시간 시세 수신 엔진 개발, 리스크 관리 시스템
  • 🟠 높음: 주문 매칭 엔진, AI 가격 예측 모델, 백테스팅 엔진
  • 🟡 중간: 차트 라이브러리 개발
  • 완료: Kubernetes 인프라 구축

개발

# 의존성 설치
pnpm install

# 개발 모드
pnpm dev

# 빌드
pnpm build

# 빌드된 버전 실행
pnpm start

주요 특징

  • 🚀 즉시 사용 가능: API 키나 외부 서비스 설정 불필요
  • 📋 실제 프로젝트 시뮬레이션: 트레이딩 플랫폼 구축의 실제 태스크들
  • 🔒 타입 안전성: TypeScript와 Zod 스키마 검증
  • 🤖 Claude MCP 호환: Claude와 완벽하게 통합
  • 🎯 한글 지원: 모든 프로젝트와 태스크 설명이 한글로 제공

라이선스

MIT

문제 신고

이슈나 기능 요청은 GitHub Issues에 등록해주세요.

변경 사항

v1.1.2

  • JSON Schema 생성 로직 개선
  • MCP SDK 호환성 문제 수정

v1.1.1

  • 패키지 이름 수정: @psw./mcp-preview → psw-mcp-preview
  • Windows 호환성 개선
  • bin 경로 설정 수정

v1.1.0

  • 외부 API 의존성 제거
  • Mock 데이터로 변경 (트레이딩 플랫폼 구축 프로젝트)
  • API 키 요구사항 제거
  • 즉시 사용 가능한 데모 버전