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

@keyqinc/slipstream-mcp

v0.2.0

Published

Slipstream MCP server for Claude — manage remote devices and execute commands directly from your AI assistant.

Readme

@keyqinc/slipstream-mcp

MCP server for Slipstream — manage remote devices and execute commands directly from Claude.

npm version License: MIT

What is Slipstream?

Slipstream is a cross-platform remote desktop, terminal, and device management tool. This MCP server lets you interact with your Slipstream devices directly from Claude — list devices, execute commands, and monitor your infrastructure through natural language.

Installation

Claude Desktop (Recommended)

Download the Desktop Extension and double-click to install.

Claude Code (CLI)

Add to your project's .mcp.json:

{
  "mcpServers": {
    "slipstream": {
      "command": "npx",
      "args": ["-y", "@keyqinc/slipstream-mcp"],
      "env": {
        "SLIPSTREAM_TOKEN": "pat_your_token_here"
      }
    }
  }
}

Or add via CLI:

claude mcp add slipstream -- npx -y @keyqinc/slipstream-mcp -e SLIPSTREAM_TOKEN=pat_your_token_here

Getting Your API Token

  1. Sign up at slipstream.keyq.io
  2. Go to Settings → API Tokens
  3. Create a token and copy the pat_... value

Enabling Command Execution

Remote command execution requires explicit permission:

  1. Go to Team → click your user → Permissions
  2. Enable Remote Command Execution (exec:command)

Tools

list_devices

List all devices with online status, tags, and capabilities.

> List my Slipstream devices

● [9] raspberrypi (linux/aarch64) — online [Production] — capabilities: terminal,files,remote
○ [10] ws1 (windows/x86_64) — offline — capabilities: terminal,files,remote

execute_command

Run a shell command on a remote device. Supports pipes, redirects, loops, and multi-command chains.

> Run "df -h" on device 9

Filesystem      Size  Used Avail Use% Mounted on
/dev/mmcblk0p2   29G  8.2G   19G  31% /

[exit_code: 0, duration: 22ms, device: 9]
> Check nginx status and last 5 error log lines on device 15

systemctl status nginx && tail -5 /var/log/nginx/error.log

device_info

Get detailed information about a device including tags, capabilities, and connection status.

> Tell me about device 9

Device: raspberrypi (linux)
ID: 9
Hostname: raspberrypi
OS: linux (aarch64)
Status: ● Online
Agent Version: 0.1.0
Capabilities: terminal,files,remote
Organization: KeyQ, Inc.
Tags: Production, KeyQ

exec_history

View recent command executions on a device.

> Show recent commands on device 9

[ok] uname -a — 4/1/2026, 10:08:22 AM (18ms)
[ok] df -h — 4/1/2026, 10:12:45 AM (22ms)

Security

  • Permission-gated: exec:command permission required (not granted by default)
  • Audit logged: Every command logged with user, device, command text, and result
  • Rate limited: 60 commands/minute per device
  • Timeout enforced: 30-second max execution time
  • Output capped: 1MB per stream (stdout/stderr)
  • Dangerous command detection: Flags destructive commands (rm -rf, DROP TABLE, shutdown, etc.)
  • Credential isolation: Agent strips sensitive env vars from command environment
  • Revocable tokens: Personal API tokens can be revoked instantly from the dashboard

Environment Variables

| Variable | Required | Description | |---|---|---| | SLIPSTREAM_TOKEN | Yes | Personal API token (pat_...) | | SLIPSTREAM_API_URL | No | API URL (default: https://slipstream-api.keyq.io) | | SLIPSTREAM_DEBUG | No | Set to 1 for debug logging |

Requirements

Links

License

MIT — see LICENSE