@chinchillaenterprises/mcp-upwork
Version:
Modular Upwork MCP server for job search and proposal management via Upwork API
34 lines • 781 B
TypeScript
export interface UpworkFreelancer {
id: string;
name: string;
title: string;
overview: string;
skills: string[];
hourly_rate: number;
job_success_score?: number;
total_earned: number;
hours_worked: number;
location: {
country: string;
city?: string;
};
english_level?: string;
profile_url: string;
}
export interface UpworkJobPosting {
id?: string;
title: string;
description: string;
category: string;
skills: string[];
job_type: "hourly" | "fixed";
budget?: number;
hourly_rate_min?: number;
hourly_rate_max?: number;
duration: string;
workload: string;
experience_level: string;
status?: string;
posted_on?: string;
}
//# sourceMappingURL=client.d.ts.map