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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@hellocoop/mcp

v1.3.0

Published

Model Context Protocol (MCP) for Hellō Admin API.

Readme

@hellocoop/mcp (BETA)

Model Context Protocol (MCP) server for creating and managing Hellō applications.

🚧 BETA Status: This MCP server is currently in beta. We're actively seeking feedback and welcome contributions! Please report issues, suggest improvements, or submit pull requests to help us improve the developer experience.

Quick Install

📖 Full Documentation & Installation Guide

Quick Configuration

Copy one of these configurations into your MCP client settings:

Stdio Transport (Local):

{
  "hello-admin-stdio": {
    "command": "npx",
    "args": ["-y", "@hellocoop/mcp@latest"],
    "type": "stdio",
    "env": {
      "HELLO_DOMAIN": "hello-beta.net"
    }
  }
}

streamableHTTP Transport (Remote):

{
  "hello-admin-http": {
    "url": "https://mcp.hello-beta.net/",
    "type": "http"
  }
}

Usage

This MCP server lets you create and manage your Hellō applications directly from your AI assistant instead of using the Hellō Console.

📖 For detailed usage instructions, examples, and troubleshooting, visit: hello.dev/docs/mcp

Features

  • Application Management: Create, read, and update Hellō applications
  • Publisher Management: Create and manage publishers (teams/organizations)
  • OAuth Integration: Secure authentication via browser-based OAuth flow
  • Legal Document Generation: Create Terms of Service and Privacy Policy templates
  • Logo Management: Upload and manage application logos
  • Multiple Transports: Both stdio and HTTP MCP transports supported
  • Environment Flexibility: Configurable domains and admin servers

Available Tools

  • hello_get_profile - Get your developer profile and publishers
  • hello_create_publisher - Create a new publisher (team/organization)
  • hello_read_publisher - Read detailed publisher information
  • hello_create_application - Create a new Hellō application
  • hello_read_application - Read detailed application information
  • hello_update_application - Update application settings
  • hello_upload_logo - Upload application logos
  • hello_create_secret - Create client secrets for applications
  • hello_generate_login_button - Generate HTML/JavaScript login buttons
  • hello_generate_legal_docs - Generate Terms of Service and Privacy Policy templates

Available Resources

  • Hellō Documentation - Complete integration documentation
  • Hellō Quickstarts - Framework-specific setup guides
  • Hellō Buttons - Login button implementation guide
  • Hellō Scopes - Available scopes and claims reference
  • Hellō Wallet API - Wallet API reference documentation
  • Hellō Logo Design Guidance - Comprehensive guide for creating theme-appropriate logos

Environment Variables

  • HELLO_DOMAIN: Override the default domain (defaults to hello.coop)
  • HELLO_ADMIN: Override the admin server URL (defaults to https://admin.hello.coop)

Contributing & Development

We want your feedback! This MCP server is in beta and we're actively improving it based on real-world usage.

How to Contribute

  • 🐛 Report Issues: GitHub Issues - Found a bug or have a feature request?
  • 🔧 Submit Pull Requests: GitHub PRs - Help us improve the server
  • 💬 Join the Discussion: Discord - Share feedback and get help

Local Development

For local development and testing:

# Clone the repository
git clone https://github.com/hellocoop/packages-js
cd packages-js/MCP

# Install dependencies
npm install

# Run in stdio mode
npm start

# Run HTTP server mode
npm run start:http

Getting Access Tokens for Testing

The get-token script performs OAuth flow and outputs token data as JSON:

# Get complete token response
npm run get-token

# Extract just the access token
npm run get-token | jq -r '.access_token'

# Use in shell commands
TOKEN=$(npm run get-token 2>/dev/null | jq -r '.access_token')
curl -H "Authorization: Bearer $TOKEN" https://admin.hello.coop/api/v1/profile

# Save to file for reuse
npm run get-token > token.json

Testing

Run the comprehensive test suite:

# Run all automated tests
npm test

# Run interactive OAuth test
npm run test:oauth-interactive

Docker Development

Build and test locally:

# Build local Docker image
npm run docker:build-local

# Run locally built image
docker run -p 3000:3000 hellocoop/mcp:local

Publishing

For maintainers publishing to Docker Hub:

npm run docker:publish