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

sloppybee-mcp-server

v1.0.0

Published

MCP server for Sloppybee - Create shareable task lists from Claude Desktop and other MCP clients

Readme

Sloppybee MCP Server

An MCP (Model Context Protocol) server that enables Claude Desktop and other MCP-compatible clients to create and manage shareable task lists using the Sloppybee API.

Features

  • create_list - Create shareable task lists with optional AI-generated tasks
  • get_list - Retrieve existing lists by slug
  • generate_tasks - Generate task suggestions without creating a list

Installation

Prerequisites

  1. Node.js 18 or higher
  2. A Sloppybee API key (Get one here)

Install from npm

npm install -g @sloppybee/mcp-server

Or install from source

git clone https://github.com/sloppybee/mcp-server
cd mcp-server
npm install
npm run build

Configuration

Claude Desktop

Add to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

macOS/Linux

{
  "mcpServers": {
    "sloppybee": {
      "command": "npx",
      "args": ["@sloppybee/mcp-server"],
      "env": {
        "SLOPPYBEE_API_KEY": "sb_live_your_api_key_here"
      }
    }
  }
}

Windows

On Windows, use npx.cmd instead of npx:

{
  "mcpServers": {
    "sloppybee": {
      "command": "npx.cmd",
      "args": ["@sloppybee/mcp-server"],
      "env": {
        "SLOPPYBEE_API_KEY": "sb_live_your_api_key_here"
      }
    }
  }
}

Global Installation (Alternative)

If installed globally with npm install -g @sloppybee/mcp-server:

macOS/Linux:

{
  "mcpServers": {
    "sloppybee": {
      "command": "sloppybee-mcp",
      "env": {
        "SLOPPYBEE_API_KEY": "sb_live_your_api_key_here"
      }
    }
  }
}

Windows:

{
  "mcpServers": {
    "sloppybee": {
      "command": "sloppybee-mcp.cmd",
      "env": {
        "SLOPPYBEE_API_KEY": "sb_live_your_api_key_here"
      }
    }
  }
}

Other MCP Clients

The server uses stdio transport and expects the SLOPPYBEE_API_KEY environment variable to be set.

Usage

Once configured, you can ask Claude to create task lists:

"Create a packing list for a week-long beach vacation"

"Make a shopping list for Thanksgiving dinner for 12 people"

"Generate task suggestions for planning a birthday party"

Available Tools

create_list

Create a new shareable task list.

Parameters:

  • title (required): Title of the list
  • tasks: Array of tasks with task and optional comment
  • ai_generate: Set to true for AI-generated tasks
  • ai_prompt: Prompt for AI generation (required if ai_generate is true)
  • expires_in_days: Days until expiration (default: 7, max: 30)

Example:

{
  "title": "Beach Vacation Packing",
  "ai_generate": true,
  "ai_prompt": "Essential items for a week at the beach"
}

get_list

Retrieve an existing list.

Parameters:

  • slug (required): The list slug from the URL
  • password: Password if list is protected

generate_tasks

Generate task suggestions without creating a list.

Parameters:

  • prompt (required): Description of tasks to generate
  • existing_tasks: Tasks to avoid duplicating
  • count: Number of tasks (default: 10, max: 50)

Development

# Install dependencies
npm install

# Run in development mode
npm run dev

# Build for production
npm run build

# Run production build
npm start

Rate Limits

Links

License

MIT