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

abyss-mcp

v0.1.0

Published

Abyss MCP Server - Capture and revisit your thinking context from AI conversations

Readme

Abyss MCP Server

AI 대화에서 중요한 사고 맥락(결정, 원칙, 가정)을 자동으로 구조화하고 다시 찾을 수 있게 해주는 MCP 서버입니다.

설치

Claude Desktop

claude_desktop_config.json에 추가:

{
  "mcpServers": {
    "abyss": {
      "command": "npx",
      "args": ["-y", "abyss-mcp"],
      "env": {
        "ABYSS_API_URL": "https://your-pilot-api.onrender.com",
        "ABYSS_ACTOR_ID": "your-name",
        "ABYSS_API_KEY": "your-api-key"
      }
    }
  }
}

Cursor

Cursor Settings > MCP Servers > Add:

{
  "abyss": {
    "command": "npx",
    "args": ["-y", "abyss-mcp"],
    "env": {
      "ABYSS_API_URL": "https://your-pilot-api.onrender.com",
      "ABYSS_ACTOR_ID": "your-name",
      "ABYSS_API_KEY": "your-api-key"
    }
  }
}

환경 변수

| 변수 | 설명 | 기본값 | |------|------|--------| | ABYSS_API_URL | Abyss 백엔드 API URL | http://localhost:3000 | | ABYSS_ACTOR_ID | 사용자 식별자 | default-user | | ABYSS_API_KEY | API 인증 키 (파일럿 참여 시 개별 안내) | - |

도구

record_thinking_artifact

AI 대화에서 중요한 사고 맥락을 추출합니다.

"이번 프로젝트에서 React 대신 Svelte를 쓰기로 했어. 번들 사이즈가 작고 러닝커브가 낮아서."

이런 대화를 입력하면:

  • Decision: React 대신 Svelte 채택
  • Assumption: 번들 사이즈가 프로젝트에서 중요한 요소

이렇게 구조화된 draft를 반환합니다.

confirm_thinking_artifact

draft를 검토한 후 저장을 확정하거나 폐기합니다.

generate_weekly_review

이번 주에 축적된 기록을 주간 리뷰로 생성합니다.

  • 어떤 결정을 내렸는지
  • 반복되는 원칙은 무엇인지
  • 아직 검증하지 못한 가정은 무엇인지

개발

cd mcp-servers/abyss-mcp
npm install
npm run build

로컬 테스트 시 Claude Desktop config에서 빌드된 파일을 직접 지정:

{
  "mcpServers": {
    "abyss": {
      "command": "node",
      "args": ["<path-to-repo>/mcp-servers/abyss-mcp/dist/index.js"],
      "env": {
        "ABYSS_API_URL": "http://localhost:3000",
        "ABYSS_ACTOR_ID": "dev-user"
      }
    }
  }
}