@chinchillaenterprises/mcp-upwork
Version:
Modular Upwork MCP server for job search and proposal management via Upwork API
35 lines • 784 B
TypeScript
export interface UpworkJob {
id: string;
title: string;
description: string;
budget?: number;
hourly_rate?: {
min: number;
max: number;
};
duration?: string;
workload?: string;
skills: string[];
posted_on: string;
client: {
country: string;
feedback: number;
reviews_count: number;
jobs_posted: number;
hire_rate: number;
open_jobs: number;
total_spent: number;
verification_status: boolean;
};
}
export interface UpworkProposal {
id: string;
job_id: string;
status: string;
rate?: number;
estimated_duration?: string;
cover_letter: string;
connects_used: number;
submitted_on: string;
}
//# sourceMappingURL=upwork.d.ts.map