@pimzino/agentic-tools-mcp
Version:
A comprehensive MCP server for task management and agent memories with JSON file storage
34 lines (33 loc) • 831 B
TypeScript
/**
* Project data model for the task management system
*/
export interface Project {
/** Unique identifier for the project */
id: string;
/** Project name */
name: string;
/** Project description/overview */
description: string;
/** Timestamp when the project was created */
createdAt: string;
/** Timestamp when the project was last updated */
updatedAt: string;
}
/**
* Input data for creating a new project
*/
export interface CreateProjectInput {
/** Project name */
name: string;
/** Project description/overview */
description: string;
}
/**
* Input data for updating an existing project
*/
export interface UpdateProjectInput {
/** Project name (optional) */
name?: string;
/** Project description/overview (optional) */
description?: string;
}