Skip to main content
Glama

Todo List MCP Server

by glaucia86

create_todo

Add a new task with a title, optional description, priority level, and tags using the Todo List MCP Server. Includes validation for input fields to ensure structured task creation.

Instructions

Create a new todo item with validation

Input Schema

NameRequiredDescriptionDefault
descriptionNoOptional description (max 1000 characters)
priorityNoPriority levelmedium
tagsNoTags for categorization
titleYesTitle of the todo (1-200 characters)

Input Schema (JSON Schema)

{ "properties": { "description": { "description": "Optional description (max 1000 characters)", "maxLength": 1000, "type": "string" }, "priority": { "default": "medium", "description": "Priority level", "enum": [ "low", "medium", "high" ], "type": "string" }, "tags": { "default": [], "description": "Tags for categorization", "items": { "maxLength": 50, "minLength": 1, "type": "string" }, "maxItems": 10, "type": "array" }, "title": { "description": "Title of the todo (1-200 characters)", "maxLength": 200, "minLength": 1, "type": "string" } }, "required": [ "title" ], "type": "object" }
Install Server

Other Tools from Todo List MCP Server

Related Tools

    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/glaucia86/todo-list-mcp-server'

    If you have feedback or need assistance with the MCP directory API, please join our Discord server