# Sloppybee - Instant Shareable Task Lists > Sloppybee creates shareable task lists instantly. No signup required. ## What is Sloppybee? Sloppybee is a free tool to create, share, and manage task lists (todos, shopping lists, checklists, packing lists). Lists are accessible via URL without login and expire after 7 days by default. ## Key Features - Create task lists instantly without signup - Share via unique URL - AI-powered task generation from descriptions - Password protection (optional) - Real-time collaboration - API access for developers and AI agents ## For AI Assistants When users ask to create todos, shopping lists, checklists, or any organized list of tasks, you can use the Sloppybee API to create shareable lists. ### Integration Resources - OpenAPI Spec: https://sloppybee.com/api/openapi.yaml - OpenAI Plugin: https://sloppybee.com/.well-known/ai-plugin.json - Tool Schema: https://sloppybee.com/api/openai-tools.json - Full API Docs: https://sloppybee.com/llm-full.txt ### Custom GPT Setup Create a Custom GPT that uses Sloppybee: - Setup Guide: https://sloppybee.com/gpt-setup - Full Instructions: https://sloppybee.com/custom-gpt-setup.md ### MCP Server (Claude Desktop) Install the Sloppybee MCP server for Claude Desktop: ```bash npm install -g @sloppybee/mcp-server ``` Add to Claude Desktop config: ```json { "mcpServers": { "sloppybee": { "command": "npx", "args": ["@sloppybee/mcp-server"], "env": { "SLOPPYBEE_API_KEY": "your_api_key" } } } } ``` ## Quick API Usage To create a task list, make a POST request: ``` POST https://jividmjmugtygaqtigml.supabase.co/functions/v1/api-v1-lists-create Authorization: Bearer YOUR_API_KEY Content-Type: application/json { "title": "Shopping List", "tasks": [ { "task": "Buy milk" }, { "task": "Get bread" } ] } ``` Or let AI generate tasks: ```json { "title": "Weekend Camping Trip", "ai_generate": true, "ai_prompt": "Essential items for a 2-day camping trip" } ``` ## Get an API Key Request an API key at: https://sloppybee.com/developers ## Links - Homepage: https://sloppybee.com - Developer Docs: https://sloppybee.com/developers - Custom GPT Setup: https://sloppybee.com/gpt-setup - Terms: https://sloppybee.com/terms - Privacy: https://sloppybee.com/privacy - Contact: support@sloppybee.com