What problem does it solve? Building a Model Context Protocol server for task management from scratch requires boilerplate for tool registration, database sessions, and user isolation. This Skill generates a complete, stateless MCP todo server so conversational agents can manage per-user tasks without custom plumbing. ## Core Features & Use Cases - Five CRUD Tools: Implements add_task, list_tasks, complete_task, delete_task, and update_task via FastMCP decorators. - Stateless User Isolation: Every tool takes user_id as its first argument and filters all SQL queries by it, with no in-memory state. - PostgreSQL Persistence: Uses SQLModel sessions per request so all state lives in the database. - Use Case: You are building an AI assistant that manages user todos. Use this Skill to generate the MCP server, register it in your MCP config, and let the agent call the todo tools on behalf of authenticated users. ## Quick Start Ask the AI to use the mcp-todo-skill to generate a stateless MCP todo server with PostgreSQL persistence and register it in the MCP configuration.