Skip to main content
Glama

MCP TODO Checklist Server

by hevener10
schemas.ts616 B
import { z } from 'zod'; export const ChecklistItemSchema = z.object({ id: z.string(), title: z.string().min(1), description: z.string().optional(), completed: z.boolean(), dueDate: z.date().optional(), priority: z.enum(['low', 'medium', 'high']), tags: z.array(z.string()), createdAt: z.date(), updatedAt: z.date() }); export const ChecklistSchema = z.object({ id: z.string(), title: z.string().min(1), description: z.string().optional(), items: z.array(ChecklistItemSchema), createdAt: z.date(), updatedAt: z.date(), owner: z.string(), shared: z.array(z.string()).optional() });

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/hevener10/mcp-todo-checklist'

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