Skip to main content
Glama
fieldjoshua

Upwork MCP Server

by fieldjoshua

Submit Milestone Work

upwork_submit_milestone

Submit completed milestone work on a fixed-price contract to notify the client for review and approval.

Instructions

Submit work for a milestone on a fixed-price contract.

Mark a milestone as complete and ready for client review.

Args:

  • contract_id (string, required): The contract ID

  • milestone_id (string, required): The milestone ID to submit

  • message (string, optional): Message to the client about the submission

Returns: Confirmation of submission.

Important: Only submit when work is complete. The client will review and approve or request changes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageNoOptional message to the client about the submission
contract_idYesThe unique identifier of the contract
milestone_idYesThe unique identifier of the milestone to submit

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already convey the safety profile (write operation, not destructive, not idempotent), and the description is consistent with them. It adds workflow context beyond annotations by disclosing the state transition (milestone becomes complete) and the downstream client review/approval process.

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 compact and front-loaded with purpose, followed by a terse Args/Returns block and a valuable usage warning. The Args section is somewhat redundant with the 100%-covered schema, but the overall structure wastes little space.

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

Completeness4/5

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

For a simple 3-string-param mutation with full schema coverage and annotations, the description covers purpose, usage condition, params, and return. Minor gaps: the return value is vaguely specified as 'Confirmation of submission' and there is no cross-reference to sibling listing tools for obtaining contract_id/milestone_id.

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 fully documents all three parameters; baseline 3 applies. The description's Args block restates the same information without adding format details, ID-source hints, or relationships to sibling tools like upwork_list_milestones.

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 a specific verb+resource: 'Submit work for a milestone on a fixed-price contract' and adds the resulting state change 'Mark a milestone as complete and ready for client review.' This clearly differentiates it from siblings like upwork_request_payment or upwork_end_contract without needing to inspect schemas.

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 'Important: Only submit when work is complete. The client will review and approve or request changes' note gives a clear condition for when to invoke the tool. However, it does not explicitly name alternatives or when-not-to-use conditions relative to adjacent workflow tools like upwork_list_milestones or upwork_request_payment.

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