@chinchillaenterprises/mcp-upwork
Version:
Modular Upwork MCP server for job search and proposal management via Upwork API
17 lines • 575 B
TypeScript
import { Tool } from "@modelcontextprotocol/sdk/types.js";
import { LogTimeArgsSchema } from "../../schemas/upwork.js";
import { z } from "zod";
export declare const toolDefinition: Tool;
export declare const handler: (args: z.infer<typeof LogTimeArgsSchema>) => Promise<{
success: boolean;
loggedTime: {
contractId: string;
hours: number;
date: string;
description: string;
status: any;
};
response: any;
}>;
export { LogTimeArgsSchema as schema } from "../../schemas/upwork.js";
//# sourceMappingURL=log-time.d.ts.map