GitHub Projects MCP Server

update-project-item-field

Update a field value for a project item

Input Schema

NameRequiredDescriptionDefault
fieldIdYesID of the field to update
itemIdYesID of the project item
projectIdYesGitHub Project ID
valueYesNew value for the field

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "fieldId": { "description": "ID of the field to update", "type": "string" }, "itemId": { "description": "ID of the project item", "type": "string" }, "projectId": { "description": "GitHub Project ID", "type": "string" }, "value": { "anyOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "additionalProperties": false, "properties": { "singleSelectOptionId": { "description": "ID of the single select option", "type": "string" } }, "required": [ "singleSelectOptionId" ], "type": "object" }, { "additionalProperties": false, "properties": { "iterationId": { "description": "ID of the iteration", "type": "string" } }, "required": [ "iterationId" ], "type": "object" }, { "additionalProperties": false, "properties": { "date": { "description": "ISO date string", "type": "string" } }, "required": [ "date" ], "type": "object" } ], "description": "New value for the field" } }, "required": [ "projectId", "itemId", "fieldId", "value" ], "type": "object" }