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

loopshouse

v0.1.1

Published

Loops House CLI — manage hackathon projects, ideate with AI, and submit from your terminal or AI agent

Readme

loopshouse

CLI and MCP server for Loops House — manage hackathon projects, brainstorm with AI, and submit from your terminal or AI agent.

Quick Start

# Run directly (no install)
npx loopshouse auth login

# Or install globally
npm i -g loopshouse
loops auth login

Authentication

The CLI uses browser-based OAuth (Google or GitHub) via Supabase PKCE. Tokens are stored at ~/.loops/credentials.json and auto-refresh on use.

# Log in (opens browser)
loops auth login
loops auth login --provider github

# Check status
loops auth status

# Log out
loops auth logout

Commands

Projects

# List your projects
loops project list

# Create a project
loops project create --name "My DeFi App" --description "On-chain analytics tool"

# Create with full details
loops project create \
  --name "My App" \
  --description "Description" \
  --githubUrl https://github.com/user/repo \
  --techStack "React,Solidity,IPFS" \
  --category DeFi

# Update a project
loops project update --id <project-id> --name "New Name" --techStack "React,Rust"

Hackathons

# List hackathons accepting submissions
loops hackathon list

# List all hackathons (including past)
loops hackathon list --all

# AI-powered ideation for a hackathon
loops hackathon ideate -h <hackathon-id> -m "I want to build something with AI and blockchain"

# Ideate with your project context
loops hackathon ideate -h <hackathon-id> -p <project-id> -m "How does my project fit?"

# Submit to a hackathon
loops hackathon submit -h <hackathon-id> -p <project-id>

MCP Server (AI Agent Integration)

Use the Loops CLI as an MCP tool server in Claude Code, Cursor, Windsurf, or any MCP-compatible agent.

Claude Code

# Auto-configure
loops mcp add

# Or manually — add to .mcp.json in your project root:
{
  "mcpServers": {
    "loops": {
      "command": "npx",
      "args": ["loopshouse", "--mcp"]
    }
  }
}

Cursor / Windsurf

Add to your MCP settings:

{
  "mcpServers": {
    "loops": {
      "command": "npx",
      "args": ["loopshouse", "--mcp"]
    }
  }
}

Available MCP Tools

| Tool | Description | |------|-------------| | auth_login | Authenticate via browser OAuth | | auth_status | Check authentication status | | auth_logout | Clear stored credentials | | project_list | List your projects | | project_create | Create a new project | | project_update | Update project details | | hackathon_list | Browse open hackathons | | hackathon_ideate | AI brainstorming for a hackathon | | hackathon_submit | Submit a project to a hackathon |

Example Agent Usage

Once configured, your AI agent can:

"List my Loops House projects" "Submit my project to the Shanghai hackathon" "Help me brainstorm ideas for the upcoming hackathon"

The agent calls the MCP tools automatically — no manual CLI commands needed.

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | LOOPS_PLATFORM_URL | https://loops.house | Override the platform API URL (for local dev) |

Development

# Clone and install
cd skill && bun install

# Run in dev mode
bun run dev -- auth status

# Build for npm
bun run build

# Test compiled output
node dist/loops.js --help

License

MIT