GitHub Projects MCP Server

update-project-field

Update a field in a GitHub Project

Input Schema

NameRequiredDescriptionDefault
dataTypeNoNew field data type
fieldIdYesID of the field to update
nameNoNew field name
projectIdYesGitHub Project ID
singleSelectOptionsNoUpdated options for single select field

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "dataType": { "description": "New field data type", "enum": [ "TEXT", "NUMBER", "DATE", "SINGLE_SELECT", "ITERATION" ], "type": "string" }, "fieldId": { "description": "ID of the field to update", "type": "string" }, "name": { "description": "New field name", "type": "string" }, "projectId": { "description": "GitHub Project ID", "type": "string" }, "singleSelectOptions": { "description": "Updated options for single select field", "items": { "additionalProperties": false, "properties": { "color": { "description": "New option color", "type": "string" }, "description": { "description": "New option description", "type": "string" }, "name": { "description": "New option name", "type": "string" }, "optionId": { "description": "Option ID to update", "type": "string" } }, "type": "object" }, "type": "array" } }, "required": [ "projectId", "fieldId" ], "type": "object" }