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

moeba-claude-channel

v0.0.9

Published

Claude Code channel for Moeba — chat with Claude Code from the Moeba app

Readme

moeba-claude-channel

Claude Code channel for Moeba — chat with Claude Code from the Moeba mobile app.

What it does

Bridges your Claude Code session to the Moeba app. Send messages from your phone, Claude Code processes them and replies back.

Moeba App → Moeba Server → SSE → Local MCP Channel → Claude Code
                        ← HTTP reply ← moeba_reply tool ←

Install

npm install -g moeba-claude-channel

Setup

Add to ~/.claude.json:

{
  "mcpServers": {
    "moeba": {
      "command": "moeba-claude-channel",
      "args": ["--login"],
      "autoApprove": ["moeba_reply", "moeba_progress"]
    }
  }
}

First run

  1. Start Claude Code — the channel starts automatically
  2. Browser opens for Google/Apple sign-in (same account as your Moeba app)
  3. Credentials cached at ~/.moeba/channel-<project>.json
  4. A "Claude Code — <project>" agent appears in your Moeba app

Headless mode (SSH, CI, or setting up for another user)

No browser needed — pass an API key and email via env vars:

{
  "mcpServers": {
    "moeba": {
      "command": "moeba-claude-channel",
      "args": ["--login"],
      "env": {
        "MOEBA_API_KEY": "mba_your_key_here",
        "MOEBA_EMAIL": "[email protected]"
      },
      "autoApprove": ["moeba_reply", "moeba_progress"]
    }
  }
}

Multi-project support

Each project directory gets its own agent in the Moeba app:

  • Claude Code — kepler
  • Claude Code — moeba
  • Claude Code — roxy

The project name is detected from the git repo. Override with MOEBA_PROJECT env var.

Tools

| Tool | Description | |------|-------------| | moeba_reply | Send a reply back to the Moeba user | | moeba_progress | Show a typing indicator while working |

Channel notifications

To enable Claude Code to auto-respond to incoming messages:

claude --dangerously-load-development-channels server:moeba

For fully unattended operation (no permission prompts — Claude can read/write files, run commands, etc.):

claude --dangerously-load-development-channels server:moeba --dangerously-skip-permissions

Warning: Only use --dangerously-skip-permissions in trusted environments. Any message from an authenticated Moeba user can trigger file operations and command execution.

Requirements

Links