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

@mindstudio-ai/local-model-tunnel

v0.1.5

Published

Run local AI models with MindStudio

Readme

MindStudio Local Model Tunnel

Run local models with MindStudio.

Providers supported so far:

Prerequisites

  • Node.js 18+

Installation

npm install -g @mindstudio-ai/local-model-tunnel

Quick Start

# Launch the interactive menu
mindstudio-local

This opens an interactive home screen where you can:

  • Setup - Install and configure local AI providers (Ollama, LM Studio, Stable Diffusion)
  • Authenticate - Log in to MindStudio
  • Register Models - Register your local models with MindStudio
  • Start Tunnel - Launch the local model tunnel
  • View Models - See available local models
  • Configuration - View current settings

Manual Commands

If you prefer command-line usage:

# Run the setup wizard
mindstudio-local setup

# Authenticate with MindStudio
mindstudio-local auth

# Register your local models
mindstudio-local register

# Start the tunnel
mindstudio-local start

Setup Wizard

The setup wizard (mindstudio-local setup) helps you install and configure providers:

Ollama:

  • Auto-install Ollama (Linux/macOS)
  • Start/stop Ollama server
  • Download models from ollama.com/library

LM Studio:

  • Opens download page in browser
  • Guides you through enabling the local server

Stable Diffusion Forge:

  • Clones the repository to your chosen location
  • Provides setup instructions
  • Tip: Download models from civitai.com (filter by "SDXL 1.0")

Provider Setup (Manual)

Ollama

  1. Download Ollama
  2. Pull a model: ollama pull llama3.2 (see all models)
  3. Start the server: ollama serve

LM Studio

  1. Download LM Studio
  2. Download a model through the app
  3. Enable the Local Server

Stable Diffusion (Forge)

First-time setup:

git clone https://github.com/lllyasviel/stable-diffusion-webui-forge.git
cd stable-diffusion-webui-forge
./webui.sh --api

Subsequent runs:

cd stable-diffusion-webui-forge
./webui.sh --api

Commands

| Command | Description | | ------------ | ----------------------------------------- | | (none) | Open interactive home screen | | setup | Interactive setup wizard for providers | | auth | Authenticate with MindStudio via browser | | register | Register all local models with MindStudio | | start | Start the local model tunnel | | models | List available local models | | status | Check connection status | | config | Show current configuration | | set-config | Set configuration | | logout | Remove stored credentials |

Configuration Options

# Use custom provider URLs
mindstudio-local set-config --ollama-url http://localhost:11434
mindstudio-local set-config --lmstudio-url http://localhost:1234/v1
mindstudio-local set-config --sd-url http://127.0.0.1:7860

How It Works

  1. Authenticates with your MindStudio account
  2. Discovers your local models
  3. Polls MindStudio for inference requests
  4. Routes requests to local server and streams responses back

License

MIT