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

@smwb/sendbox-mcp

v0.0.2

Published

MCP server for sandbox development: filesystem, search, symbols, git, and command execution

Readme

@smwb/sendbox-mcp

MCP-сервер для разработки в sandbox-окружении. Предоставляет инструменты для работы с файлами, поиска по коду, выполнения команд и git-операций.

Установка

npm install @smwb/sendbox-mcp

Запуск

После установки сервер доступен через bin-команду:

npx smwb-sendbox-mcp

Или через имя пакета:

npx @smwb/sendbox-mcp

Или в конфигурации MCP-клиента (Cursor, Claude Desktop и т.д.):

{
  "mcpServers": {
    "sendbox": {
      "command": "npx",
      "args": ["smwb-sendbox-mcp"],
      "env": {
        "SENDBOX_MCP_ROOT": "/path/to/project"
      }
    }
  }
}

Переменная SENDBOX_MCP_ROOT задаёт корень рабочей директории. Если не указана — используется текущая директория процесса.

Инструменты

Базовые операции (P0)

| Инструмент | Описание | |---|---| | read_file | Чтение содержимого файла | | write_file | Полная перезапись файла | | apply_patch | Применение unified diff | | list_dir | Структура директории | | search_files | Поиск по содержимому (ripgrep или native fallback) |

Поиск и анализ (P1)

| Инструмент | Описание | |---|---| | semantic_search | Поиск по смыслу через keyword/symbol ranking | | get_symbols | Извлечение функций, классов, методов из файла | | find_usages | Поиск всех использований символа |

Управление окружением (P1)

| Инструмент | Описание | |---|---| | exec_command | Выполнение shell-команд | | get_dev_server_status | Проверка статуса dev-сервера (Next.js и др.) |

Git-интеграция (P2)

| Инструмент | Описание | |---|---| | git_diff | Текущие изменения в репозитории | | git_status | Статус рабочей директории |

Требования

  • Node.js >= 20
  • Git в PATH (для git-инструментов)
  • Ripgrep (rg) опционален — при отсутствии используется встроенный поиск

Разработка

npm install
npm run dev
npm run build
npm start
npm run lint
npm run typecheck
npm test
npm run test:cov

CI/CD

Конфигурация: .sourcecraft/ci.yaml.

Pull request → main

  • npm run lint
  • npm run typecheck
  • npm test

Git-тег → публикация в npm

Workflow npm-publish запускается при push тега формата v* (например v0.1.0).

Перед релизом:

  1. Обнови version в package.json (должна совпадать с тегом без префикса v).
  2. Закоммить изменения в main.
  3. Создай и запушь тег:
git tag v0.1.0
git push origin v0.1.0

CI проверит lint/typecheck/tests, соберёт пакет и выполнит npm publish.

Секреты репозитория SourceCraft

Добавь в Settings → Secrets репозитория:

| Секрет | Обязательный | Описание | |---|---|---| | NPM_TOKEN | да | Automation token npm с правом Publish для пакета @smwb/sendbox-mcp |

Токен создаётся на npmjs.com → Access Tokens → Generate New Token → Granular Access Token (или Classic Automation).

CI публикует в https://registry.npmjs.org.

Лицензия

MIT