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

@orbiterdev/mcp-server

v0.1.9

Published

MCP server for Orbiter Dev — Approve, reject, and monitor AI coding agent actions from your phone. Works with Claude Code, Cursor, Windsurf, and any MCP-compatible agent.

Readme

Orbiter Dev MCP Server

Air Traffic Control for your AI Agents. Stop babysitting your terminal, and stop YOLO-ing your codebase.

npm version

Overview

The Orbiter Dev MCP (Model Context Protocol) server integrates directly with Claude Code, Cursor, Windsurf, and other MCP-compatible agents. It intercepts risky actions (like deploying to production, modifying databases, or installing packages) and sends them to your phone for explicit biometric approval.

Stop bypassing safety by running --dangerously-skip-permissions. Use Orbiter Dev to auto-approve safe tasks via our Policy Engine, and securely gate destructive commands via your iOS/Android device.

Installation

We recommend using npx so your agents always pull the latest hardened release.

Prerequisites:

  • Node.js 18+

Configuration

Configure your AI IDE to use the Orbiter Dev MCP server. Add the following to your MCP configuration file (e.g., in Claude Code, Cursor, or Windsurf):

{
  "mcpServers": {
    "orbiter-dev": {
      "command": "npx",
      "args": ["-y", "@orbiterdev/mcp-server@latest"],
      "env": {
        "ORBITER_SERVER_URL": "https://api.orbiterdev.ai"
      }
    }
  }
}

How It Works

  1. Agent Signals: Your AI attempts to execute a risky sequence.
  2. Intercept: The Orbiter MCP server pauses the agent and streams a summary/diff to your phone.
  3. Approve: You review the risk level on the Orbiter mobile app. Tap "Approve" (with FaceID for critical actions).
  4. Resume: The agent picks up exactly where it left off.

Core Capabilities Exposed to Agents

The server exposes the following tools directly to the AI agent:

request_approval

Pauses the agent execution, sends a high-priority push notification containing the action plan, files, and risk analysis to the developer's mobile device, and waits for explicit approval before continuing.

Device Pairing & Authentication

Agents can securely pair your local IDE workspace directly to your Orbiter Dev mobile application using secure short-lived pairing codes, eliminating the need to store static tokens in plain text configurations.

Async Notifications (Hooks)

You can use the Orbiter notifier to send background push updates when your agent completes a long-running process (like dropping a database, running a lengthy test suite, or finishing a build pipeline).

Local Usage:

export ORBITER_TOKEN="your-app-token"
npx @orbiterdev/mcp-server notify --event "Test Suite" --message "Tests passed successfully"

Claude Code Hook Example (.claudecode.json):

{
  "hooks": {
    "PostToolUse": {
      "command": "npx @orbiterdev/mcp-server notify --event 'Tool Execution' --message '{{tool_name}} completed'",
      "async": true
    }
  }
}

WebsiteDocumentationSupport