Skip to main content
Glama
types.ts1.48 kB
/** * Tududi API Types */ export interface TududuTask { id: string; title: string; description?: string; completed: boolean; projectId?: string; areaId?: string; dueDate?: string; priority?: 'low' | 'medium' | 'high'; tags?: string[]; createdAt: string; updatedAt: string; } export interface TududuProject { id: string; name: string; description?: string; areaId?: string; color?: string; archived: boolean; createdAt: string; updatedAt: string; } export interface TududuArea { id: string; name: string; description?: string; color?: string; archived: boolean; createdAt: string; updatedAt: string; } export interface CreateTaskInput { title: string; description?: string; projectId?: string; areaId?: string; dueDate?: string; priority?: 'low' | 'medium' | 'high'; tags?: string[]; } export interface UpdateTaskInput { title?: string; description?: string; completed?: boolean; projectId?: string; areaId?: string; dueDate?: string; priority?: 'low' | 'medium' | 'high'; tags?: string[]; } export interface CreateProjectInput { name: string; description?: string; areaId?: string; color?: string; } export interface CreateAreaInput { name: string; description?: string; color?: string; } export interface SearchTasksParams { query?: string; projectId?: string; areaId?: string; completed?: boolean; priority?: 'low' | 'medium' | 'high'; tags?: string[]; }

Latest Blog Posts

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/jerrytunin/tududi-mcp'

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