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

@tropass/mcp-installer

v1.7.3

Published

Installer for configuring agents to use the Tropass remote MCP gateway.

Readme

Tropass MCP Installer

Подключает OpenCode к Tropass: добавляет MCP-инструменты с ML-моделями, LLM-провайдер tropass и инструкции для агента.

Требования

  • Node.js 22 или новее;
  • установленный OpenCode;
  • API-токен Tropass.

Быстрый старт

Запустите команду в каталоге проекта:

npx -y @tropass/mcp-installer

Установщик попросит выбрать область установки и ввести API-токен. По умолчанию конфигурация создаётся глобально для текущего пользователя. После установки перезапустите OpenCode.

Что будет настроено

В opencode.json будут добавлены MCP-сервер и LLM-провайдер tropass. Моделью по умолчанию станет tropass/Qwen3.5-397B-A17B-FP8. Остальные разделы конфигурации сохранятся.

При проектной установке появятся файлы:

opencode.json
.opencode/skills/tropass-gateway/SKILL.md
.opencode/skills/agent-response-display/SKILL.md

Область установки

| Режим | Конфигурация | Skills | | --- | --- | --- | | global | ~/.config/opencode/opencode.jsonc | ~/.config/opencode/skills | | project | <project>/opencode.json | <project>/.opencode/skills |

В Windows глобальная конфигурация находится в %APPDATA%/opencode.

Режим можно выбрать интерактивно или флагом --global / --local:

npx -y @tropass/mcp-installer opencode --global
npx -y @tropass/mcp-installer opencode --local

Установка без вопросов

Для CI и скриптов:

npx -y @tropass/mcp-installer opencode \
  --scope global \
  --token "your-api-token" \
  --yes

Токен и адреса шлюзов можно передать через переменные окружения:

export TROPASS_API_TOKEN="your-api-token"
export TROPASS_MCP_URL="https://апи.тропасс.рф"
export TROPASS_LLM_URL="https://апи.ллм.тропасс.рф"
npx -y @tropass/mcp-installer opencode --scope global --yes

Параметры CLI

Использование: tropass-mcp-install [options] [client]

Аргументы:
  client             MCP-клиент (сейчас поддерживается opencode)

Параметры:
  --config <path>    путь к файлу конфигурации
  --url <url>        базовый URL шлюза Tropass MCP
  --llm-url <url>    URL шлюза Tropass LLM
  --token <token>    API-токен Tropass
  --scope <scope>    область установки: global или project
  --global           глобальная установка
  --local            установка в текущий проект
  --project <dir>    каталог проекта
  -y, --yes           принять значения по умолчанию
  -h, --help          показать справку

Безопасность

API-токен сохраняется в конфигурации OpenCode. Не добавляйте проектный opencode.json с токеном в публичный репозиторий.

Разработка

npm ci
npm run check

npm run check запускает проверку типов, линтер, тесты и сборку.

Лицензия

MIT