sloppybee

sloppybee

Enables Claude and other MCP clients to create and manage shareable task lists via the Sloppybee API.

Category
Visit Server

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

  • Free tier: 100 requests/hour
  • Contact support@sloppybee.com for higher limits

Links

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured