We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/arshad-khan1/Timesheet-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* DTO for creating a timesheet entry
* Used to validate and type timesheet creation requests
*/
export interface CreateTimesheetEntryDto {
project_id: number;
module_id: number;
activity_id: number;
start_time: string; // HH:MM:SS format
end_time: string; // HH:MM:SS format
duration: number; // in minutes
description: string; // minimum 10 characters
date: string; // YYYY-MM-DD format
}
/**
* DTO for fetching timesheet entries with pagination
*/
export interface FetchTimesheetEntriesDto {
page?: number; // default: 1
limit?: number; // default: 10, max: 100
}
/**
* Response DTO for timesheet entries
*/
export interface TimesheetResponseDto {
success: boolean;
message?: string;
data?: any;
pagination?: {
page: number;
limit: number;
userId: number;
};
error?: string;
}