Skip to main content
Glama
fieldjoshua

Upwork MCP Server

by fieldjoshua

Save/Unsave Job

upwork_save_job
Idempotent

Save or unsave Upwork jobs by ID. Bookmark interesting positions for later application or remove them from your saved list.

Instructions

Save a job to your favorites or remove it from saved jobs.

Use this to bookmark jobs you want to apply to later.

Args:

  • job_id (string, required): The job ID to save/unsave

  • save (boolean): True to save, false to remove (default: true)

Returns: Confirmation of the save/unsave action.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
saveNoTrue to save the job, false to remove from saved jobs
job_idYesThe unique identifier of the job to save/unsave

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior3/5

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

Annotations already convey idempotentHint=true, destructiveHint=false, and readOnlyHint=false. The description adds the save/unsave toggle behavior and a confirmation return, which is mildly useful but not substantially beyond what the annotations and title already imply. No contradiction with annotations.

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 front-loaded with the core purpose, then uses compact Args/Returns sections. It is slightly redundant with the schema, but not bloated or confusing.

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?

For a simple two-parameter toggle tool with no output schema, the description is complete: it explains the action, required parameter, default behavior, and return value. An agent has enough context to select and invoke it correctly.

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%, and the schema already documents both job_id and save, including the default. The Args block in the description mostly restates this information rather than adding new semantic meaning.

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 pair: 'Save a job to your favorites or remove it from saved jobs.' This clearly differentiates the tool from sibling read/search/proposal tools like upwork_get_job, upwork_search_jobs, and upwork_submit_proposal.

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?

It provides a clear use case: 'Use this to bookmark jobs you want to apply to later.' This tells the agent when the tool is appropriate, though it does not explicitly name alternatives or state when not to use it.

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