Skip to main content
Glama
fieldjoshua

Upwork MCP Server

by fieldjoshua

Submit Proposal

upwork_submit_proposal

Submit a job proposal on Upwork with cover letter, bid amount, and optional screening answers or attachments. Get confirmation with proposal ID and Connects used.

Instructions

Submit a proposal (application) for a job on Upwork.

Apply to a job with your cover letter and bid. This will use Connects from your account.

Args:

  • job_id (string, required): The job ID to apply to

  • cover_letter (string, required): Your cover letter (50-5000 characters)

  • bid_amount (number, required): Your bid in USD

  • bid_type ('hourly' | 'fixed', required): Type of bid

  • estimated_duration (string, optional): Estimated time to complete

  • answers (array, optional): Answers to screening questions

  • attachments (array, optional): Files to attach

Returns: Confirmation with proposal ID and Connects used.

Examples:

  • Submit hourly proposal: job_id="~01abc", cover_letter="...", bid_amount=50, bid_type="hourly"

  • Submit fixed proposal: job_id="~01abc", cover_letter="...", bid_amount=500, bid_type="fixed"

Important:

  • Submitting proposals costs Connects

  • Review job requirements carefully before submitting

  • Customize your cover letter for each job

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYesThe unique identifier of the job to apply to
answersNoAnswers to screening questions, if the job has any
bid_typeYesType of bid: 'hourly' for hourly rate or 'fixed' for fixed price
bid_amountYesYour bid amount in USD
attachmentsNoURLs or file paths to attach to the proposal
cover_letterYesYour cover letter explaining why you're a good fit for the job
estimated_durationNoEstimated time to complete the project (e.g., 'Less than 1 week', '1-2 months')

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotations are minimal and all false, so the description carries most of the behavioral burden. It adds important side-effect information: 'This will use Connects from your account' and 'Submitting proposals costs Connects.' It also documents the return value ('Confirmation with proposal ID and Connects used') despite no output schema. This goes beyond the structured fields.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with labeled Args, Returns, Examples, and Important sections, and the core purpose is front-loaded. It is slightly redundant (Connects costs are mentioned twice, and Args duplicates schema details), but the organization makes it easy for an agent to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given there is no output schema, the description appropriately documents the return value. It covers required parameters, optional parameters, examples for hourly and fixed bids, the Connects-cost side effect, and usage cautions. For a 7-parameter mutation tool with 100% schema coverage, this is a complete and actionable definition.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents every parameter. The description's Args section mostly mirrors the schema (e.g., 'cover_letter (string, required): Your cover letter (50-5000 characters)' matches minLength/maxLength; 'bid in USD' matches the schema). It adds 'required' labels and examples, but little novel parameter meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Submit a proposal (application) for a job on Upwork' and says 'Apply to a job with your cover letter and bid.' This clearly identifies both the action and the resource being acted on. It also distinguishes itself from sibling tools like upwork_update_proposal and upwork_withdraw_proposal by using the verb 'submit' for new applications.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context: this is used when applying to an Upwork job with a cover letter and bid. It also advises reviewing job requirements and customizing the cover letter, which implies pre-invocation care. However, it does not explicitly contrast this tool with alternatives like update_proposal or withdraw_proposal, so it stops short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.