UNPKG

mini-todo-list-mcp

Version:

A streamlined Model Context Protocol (MCP) server for todo management with essential CRUD operations, bulk functionality, and workflow support

17 lines (16 loc) 291 B
/** * Configuration object for the mini todo server */ export declare const config: { db: { path: string; }; server: { name: string; version: string; }; }; /** * Ensure the database folder exists */ export declare function ensureDbFolder(): void;