update_job_status
Update a saved job's status or details. Requires authentication.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Kanban item ID | |
| notes | No | Updated notes | |
| status | No | New application status | |
| excitement | No | Excitement level from 0-5 |
Update a saved job's status or details. Requires authentication.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Kanban item ID | |
| notes | No | Updated notes | |
| status | No | New application status | |
| excitement | No | Excitement level from 0-5 |
Changes observed during successful MCP inspections.
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"Input schema / additionalPropertiesRemoved value: -falseDoes the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits, but it only reveals that authentication is needed. It does not state whether the operation is reversible, what happens to unspecified fields, or what the response contains. For a mutation tool, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences with no waste. The purpose is front-loaded and the authentication requirement is noted. It is concise without sacrificing clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is functional but minimal. Given the absence of an output schema and annotations, an agent lacks information about return values, error handling, or whether partial updates are supported. For a tool with four parameters, this is adequate but not thorough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 each parameter's meaning. The description adds no extra context about parameters, so a baseline score of 3 is appropriate given the high coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Update' and the resource 'a saved job', and mentions 'status or details' which gives a sense of scope. It is distinct from siblings like save_job and remove_saved_job, though it does not explicitly name alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The only usage guidance is the authentication requirement. There is no information about when to use this tool versus other update/save tools, or any conditional logic for selecting it. The description does not help an agent decide between this and update_company_job or save_job.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.