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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@team-semicolon/semo-mcp

v2.1.4

Published

SEMO MCP Server - Integrations (GitHub, Slack, Supabase) for Claude Code

Downloads

618

Readme

@semicolon/semo-mcp

SEMO MCP Server v2.0 - Gemini 하이브리드 전략 기반 Integrations

개요

Gemini의 하이브리드 전략에 따라 Black Box 영역(외부 연동)을 MCP로 제공합니다.

| Layer | 영역 | 방식 | |-------|------|------| | Layer 0-1 | semo-core, semo-skills | White Box (Filesystem) | | Layer 2 | semo-integrations | Black Box (MCP) |

설치

npx @team-semicolon/semo-mcp

Claude Code 설정

.claude/settings.json:

{
  "mcpServers": {
    "semo-integrations": {
      "command": "npx",
      "args": ["-y", "@team-semicolon/semo-mcp"],
      "env": {
        "GITHUB_TOKEN": "${GITHUB_TOKEN}",
        "SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}",
        "SUPABASE_URL": "${SUPABASE_URL}",
        "SUPABASE_KEY": "${SUPABASE_KEY}"
      }
    }
  }
}

사용 가능한 도구

Slack Integration

| 도구 | 설명 | |------|------| | slack_send_message | Slack 채널에 메시지 전송 | | slack_lookup_user | 사용자 ID 조회 (멘션용) |

GitHub Integration

| 도구 | 설명 | |------|------| | github_create_issue | GitHub 이슈 생성 | | github_create_pr | GitHub PR 생성 |

Supabase Integration

| 도구 | 설명 | |------|------| | supabase_query | Supabase 테이블 조회 |

SEMO Orchestration

| 도구 | 설명 | |------|------| | semo_route | 요청을 적절한 Skill로 라우팅 |

리소스

| URI | 설명 | |-----|------| | semo://integrations | 외부 연동 목록 (Black Box) | | semo://skills | Skill 목록 (White Box) | | semo://commands | 커맨드 목록 |

환경변수

| 변수 | 설명 | 필수 | |------|------|------| | SLACK_BOT_TOKEN | Slack Bot Token | Slack 사용 시 | | GITHUB_TOKEN | GitHub Personal Access Token | GitHub 사용 시 | | SUPABASE_URL | Supabase 프로젝트 URL | Supabase 사용 시 | | SUPABASE_KEY | Supabase 서비스 키 | Supabase 사용 시 |

트러블슈팅

MCP 연결 끊김 (Not connected 에러)

장시간 세션 사용 시 MCP 서버 연결이 끊어질 수 있습니다.

증상:

  • <error>Not connected</error> 에러 반환
  • Slack, GitHub 등 MCP 도구 사용 불가

원인:

  • MCP 서버 프로세스가 백그라운드에서 종료됨
  • Claude Code 내부 타임아웃 발생

해결 방법:

  1. VSCode/Claude Code 재시작 (가장 확실)
  2. 명령 팔레트에서 "Developer: Reload Window" 실행
  3. MCP 서버 상태 확인: /mcp 명령어로 연결 상태 체크

예방:

  • 장시간 세션 시 주기적으로 MCP 도구 사용하여 연결 유지
  • 중요 작업 전 간단한 MCP 호출로 연결 상태 확인

개발

# 의존성 설치
npm install

# 개발 모드 실행
npm run dev

# 빌드
npm run build

참조

라이선스

MIT