sloppybee
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sloppybeeCreate a packing list for a week-long beach vacation"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Related MCP server: Google Tasks MCP Server
Installation
Prerequisites
Node.js 18 or higher
A Sloppybee API key (Get one here)
Install from npm
npm install -g @sloppybee/mcp-serverOr install from source
git clone https://github.com/sloppybee/mcp-server
cd mcp-server
npm install
npm run buildConfiguration
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 listtasks: Array of tasks withtaskand optionalcommentai_generate: Set totruefor AI-generated tasksai_prompt: Prompt for AI generation (required ifai_generateis 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 URLpassword: Password if list is protected
generate_tasks
Generate task suggestions without creating a list.
Parameters:
prompt(required): Description of tasks to generateexisting_tasks: Tasks to avoid duplicatingcount: 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 startRate Limits
Free tier: 100 requests/hour
Contact support@sloppybee.com for higher limits
Links
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables natural language task management with Todoist, supporting tasks, projects, sections, labels, smart search, and batch operations for efficient workflow integration with Claude and other MCP-compatible LLMs.Last updated1937MIT
- Alicense-qualityDmaintenanceEnables LLMs like Claude to manage Google Tasks by listing, creating, updating, completing, and deleting tasks and task lists, including setting due dates and notes.Last updatedMIT
- Flicense-qualityDmaintenanceA task management MCP server that provides tools to create, list, complete, and delete tasks using pluggable storage backends. It enables users to interact with their task lists through natural language using MCP-compatible clients like Claude Desktop.Last updated
- Flicense-qualityDmaintenanceEnables interacting with TickTick tasks and projects through natural language via Claude and other MCP clients.Last updated
Related MCP Connectors
ClickUp MCP — wraps the ClickUp REST API v2 (BYO API key)
Read and write your Fresh Jots notes from Claude, Cursor, and any MCP client.
Persistent context for Claude. Your AI always knows your projects and next actions across sessions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/walter7007/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server